import { HttpException } from './http.exception'; /** * Exception for HTTP 500 Internal Server Error errors */ export declare class InternalServerErrorException extends HttpException { constructor(message?: string); }