Affecto.IdentityManagement.Querying.Exceptions.AccountNotFoundException.AccountNotFoundException C# (CSharp) Method

AccountNotFoundException() public method

public AccountNotFoundException ( System.Guid userId, AccountType type ) : System
userId System.Guid
type AccountType
return System
        public AccountNotFoundException(Guid userId, AccountType type)
            : base("Account", string.Format("{0} and type {1}", userId, type))
        {
        }
AccountNotFoundException