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