Taijutsu.Domain.NotUniqueException.NotUniqueException C# (CSharp) Méthode

NotUniqueException() public méthode

public NotUniqueException ( object id, object type, Exception innnerException = null ) : System
id object
type object
innnerException System.Exception
Résultat System
        public NotUniqueException(object id, object type, Exception innnerException = null)
            : base(string.Format("Entity with '{0}' id and '{1}' type is not unique.", id ?? "unknown", type ?? typeof(IDomainObject)), innnerException)
        {
            Id = id;
            Type = type;
        }

Same methods

NotUniqueException::NotUniqueException ( object id, Type type, Exception innnerException = null ) : System
NotUniqueException::NotUniqueException ( string query, Type type, Exception innnerException = null ) : System
NotUniqueException::NotUniqueException ( string query, object type, Exception innnerException = null ) : System
NotUniqueException