BusinessLogic.Exceptions.EntityDoesNotExistException.EntityDoesNotExistException C# (CSharp) Метод

EntityDoesNotExistException() публичный Метод

public EntityDoesNotExistException ( Type entityType, object entityId ) : System
entityType System.Type
entityId object
Результат System
        public EntityDoesNotExistException(Type entityType, object entityId)
            : base(string.Format(EXCEPTION_MESSAGE_FORMAT, entityType.Name, entityId), HttpStatusCode.NotFound)
        {

        }
    }
EntityDoesNotExistException