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