ldapts
Version:
LDAP client
11 lines (8 loc) • 345 B
text/typescript
import { ResultCodeError } from './ResultCodeError.js';
export class UnavailableError extends ResultCodeError {
public constructor(message?: string) {
super(52, message ?? "The LDAP server cannot process the client's bind request.");
this.name = 'UnavailableError';
Object.setPrototypeOf(this, UnavailableError.prototype);
}
}