n8cn / packages /cli /src /errors /response-errors /transfer-credential.error.ts
gallyga's picture
Add n8n Chinese version
aec3094
import { ResponseError } from './abstract/response.error';
export class TransferCredentialError extends ResponseError {
constructor(message: string) {
super(message, 400, 400);
}
}