n8cn / packages /cli /src /errors /response-errors /not-implemented.error.ts
gallyga's picture
Add n8n Chinese version
aec3094
import { ResponseError } from './abstract/response.error';
export class NotImplementedError extends ResponseError {
constructor(message: string, hint: string | undefined = undefined) {
super(message, 501, 501, hint);
}
}