Files
n8n-enterprise-unlocked/packages/cli/src/errors/non-json-body.error.ts
T

8 lines
207 B
TypeScript

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`.');
}
}