mirror of
https://github.com/directus/directus.git
synced 2026-02-02 17:04:56 -05:00
8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
import { BaseException } from './base';
|
|
|
|
export class InvalidCredentialsException extends BaseException {
|
|
constructor(message = 'Invalid user credentials.') {
|
|
super(message, 401, 'INVALID_CREDENTIALS');
|
|
}
|
|
}
|