epic_explorer/server/exceptions/noDataFound.ts

8 lines
157 B
TypeScript
Raw Permalink Normal View History

2019-07-09 09:22:36 +00:00
import { HttpException } from './index';
export class NoDataFoundException extends HttpException {
constructor() {
super(404, 'No Data Found');
}
}