/** * Used to throw HTTP errors. * Just do throw new HttpError(code, message) in your controller action and * default error handler will catch it and give in your response given code and message . */ export declare class HttpError extends Error { httpCode: number; constructor(httpCode: number, message?: string); }