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

12 lines
323 B
TypeScript

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