HttpServer.NotFoundException.NotFoundException C# (CSharp) Method

NotFoundException() public method

Initializes a new instance of the BadRequestException class.
public NotFoundException ( string errMsg ) : System
errMsg string Exception description.
return System
        public NotFoundException(string errMsg) : base(HttpStatusCode.NotFound, errMsg)
        {
        }

Same methods

NotFoundException::NotFoundException ( string errMsg, Exception inner ) : System
NotFoundException