import HttpStatus from '../servlets/http/HttpStatus';
import Exception from './Exception';
export default class HttpStatusError extends Exception {
    readonly status: HttpStatus;
    readonly path: string;
    constructor(status: HttpStatus, path: string);
}
