import type { ObjectOf } from "../Types"; import type { HttpExceptionInterface } from "../Contracts/Exception/HttpExceptionInterface"; declare class HttpException extends Error implements HttpExceptionInterface { private statusCode; private headers; private previous; constructor(statusCode: number, message?: string, previous?: Error | null, headers?: ObjectOf); getStatusCode(): number; getHeaders(): ObjectOf; getPrevious(): Error | null; } export default HttpException;