mirror of
https://github.com/directus/directus.git
synced 2026-02-01 01:45:27 -05:00
8 lines
187 B
TypeScript
8 lines
187 B
TypeScript
import { BaseException } from './base';
|
|
|
|
export class InvalidIPException extends BaseException {
|
|
constructor(message = 'Invalid IP address.') {
|
|
super(message, 401, 'INVALID_IP');
|
|
}
|
|
}
|