import { BaseException } from '@directus/shared/exceptions'; export class UnprocessableEntityException extends BaseException { constructor(message: string) { super(message, 422, 'UNPROCESSABLE_ENTITY'); } }