evolution-api / src /exceptions /401.exception.ts
oex2003's picture
Deploy Evolution API to Hugging Face Space
5e518ea
import { HttpStatus } from '@api/routes/index.router';
export class UnauthorizedException {
constructor(...objectError: any[]) {
throw {
status: HttpStatus.UNAUTHORIZED,
error: 'Unauthorized',
message: objectError.length > 0 ? objectError : 'Unauthorized',
};
}
}