epic_explorer/server/exceptions/internalServerError.ts

8 lines
192 B
TypeScript
Raw Normal View History

2019-07-09 09:22:36 +00:00
import { HttpException } from './index';
export class InternalServerErrorException extends HttpException {
constructor(error: any) {
super(500, 'Internal Server Error!!', error);
}
}