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