8 lines
192 B
TypeScript
8 lines
192 B
TypeScript
|
import { HttpException } from './index';
|
||
|
|
||
|
export class InternalServerErrorException extends HttpException {
|
||
|
constructor(error: any) {
|
||
|
super(500, 'Internal Server Error!!', error);
|
||
|
}
|
||
|
}
|