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

8 lines
157 B
TypeScript

import { HttpException } from './index';
export class NoDataFoundException extends HttpException {
constructor() {
super(404, 'No Data Found');
}
}