Spaces:
Runtime error
Runtime error
File size: 280 Bytes
5e518ea |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { HttpStatus } from '@api/routes/index.router';
export class NotFoundException {
constructor(...objectError: any[]) {
throw {
status: HttpStatus.NOT_FOUND,
error: 'Not Found',
message: objectError.length > 0 ? objectError : undefined,
};
}
}
|