8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
import { HttpException } from './index';
|
|
|
|
export class NoDataFoundException extends HttpException {
|
|
constructor() {
|
|
super(404, 'No Data Found');
|
|
}
|
|
}
|