8 lines
157 B
TypeScript
Raw Normal View History

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