import ResponsableException from './ResponsableException';
export default class InternalErrorException extends ResponsableException {
    message: string;
    constructor(message?: string);
    /**
     * Get the response code
     */
    getCode(): number;
    /**
     * Get the exception name
     */
    getName(): string;
}
