inceptum
Version:
hipages take on the foundational library for enterprise-grade apps written in NodeJS
10 lines (9 loc) • 310 B
TypeScript
import HttpError from '../HttpError';
/**
* 404 Not Found
* The server has not found anything matching the Request-URI.
* No indication is given of whether the condition is temporary or permanent.
*/
export declare class NotFoundError extends HttpError {
constructor(message: string, cause?: Error);
}