mirror of
https://github.com/directus/directus.git
synced 2026-01-31 12:07:58 -05:00
8 lines
191 B
TypeScript
8 lines
191 B
TypeScript
import { BaseException } from './base';
|
|
|
|
export class UnprocessableEntityException extends BaseException {
|
|
constructor(message: string) {
|
|
super(message, 422, 'UNPROCESSABLE_ENTITY');
|
|
}
|
|
}
|