@avonjs/avonjs
Version:
A fluent Node.js API generator.
14 lines (13 loc) • 335 B
TypeScript
import ResponsableException from './ResponsableException';
export default class InternalServerErrorException extends ResponsableException {
message: string;
constructor(message?: string);
/**
* Get the response code
*/
getCode(): number;
/**
* Get the exception name
*/
getName(): string;
}