evolution-api/src/exceptions/403.exception.ts
2023-06-09 07:48:59 -03:00

12 lines
289 B
TypeScript

import { HttpStatus } from '../whatsapp/routers/index.router';
export class ForbiddenException {
constructor(...objectError: any[]) {
throw {
status: HttpStatus.FORBIDDEN,
error: 'Forbidden',
message: objectError.length > 0 ? objectError : undefined,
};
}
}