mirror of
https://github.com/directus/directus.git
synced 2026-02-06 01:25:07 -05:00
* Added edge case handling for weird IBM ldap issues * Update api/src/exceptions/unexpected-response.ts
8 lines
210 B
TypeScript
8 lines
210 B
TypeScript
import { BaseException } from '@directus/shared/exceptions';
|
|
|
|
export class UnexpectedResponseException extends BaseException {
|
|
constructor(message: string) {
|
|
super(message, 503, 'UNEXPECTED_RESPONSE');
|
|
}
|
|
}
|