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

NotUniqueException() public méthode

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

Same methods

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