n8cn / packages /cli /src /errors /response-errors /unauthenticated.error.ts
gallyga's picture
Add n8n Chinese version
aec3094
import { ResponseError } from './abstract/response.error';
export class UnauthenticatedError extends ResponseError {
constructor(message = 'Unauthenticated', hint?: string) {
super(message, 401, 401, hint);
}
}