n8n/packages/cli/src/errors/non-json-body.error.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
221 B
TypeScript
Raw Normal View History

import { ApplicationError } from 'n8n-workflow';
export class NonJsonBodyError extends ApplicationError {
constructor() {
super('Body must be valid JSON. Please make sure `content-type` is `application/json`.');
}
}