mirror of
https://github.com/directus/directus.git
synced 2026-02-01 12:05:09 -05:00
8 lines
181 B
TypeScript
8 lines
181 B
TypeScript
import { BaseException } from './base';
|
|
|
|
export class InvalidPayloadException extends BaseException {
|
|
constructor(message: string) {
|
|
super(message, 400, 'INVALID_PAYLOAD');
|
|
}
|
|
}
|