n8cn / packages /cli /src /errors /non-json-body.error.ts
gallyga's picture
Add n8n Chinese version
aec3094
import { UserError } from 'n8n-workflow';
export class NonJsonBodyError extends UserError {
constructor() {
super('Body must be valid JSON. Please make sure `content-type` is `application/json`.');
}
}