epic_explorer/server/exceptions/internalServerError.ts
2019-07-16 11:47:19 +05:30

8 lines
192 B
TypeScript

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