import { CustomBaseError } from "./custom-base-error"; import { IResponseErrorInterface } from "./interfaces/response-error-interface"; export default class BadRequestError extends CustomBaseError { statusCode: number; reason: string; constructor(message: string); serializeError(): IResponseErrorInterface; }