BusinessLogic.Exceptions.EntityDoesNotExistException.EntityDoesNotExistException C# (CSharp) Method

EntityDoesNotExistException() public method

public EntityDoesNotExistException ( Type entityType, object entityId ) : System
entityType System.Type
entityId object
return System
        public EntityDoesNotExistException(Type entityType, object entityId)
            : base(string.Format(EXCEPTION_MESSAGE_FORMAT, entityType.Name, entityId), HttpStatusCode.NotFound)
        {

        }
    }
EntityDoesNotExistException