ldapts
Version:
LDAP client
11 lines (8 loc) • 338 B
text/typescript
import { ResultCodeError } from './ResultCodeError.js';
export class BusyError extends ResultCodeError {
public constructor(message?: string) {
super(51, message ?? 'The LDAP server is too busy to process the client request at this time.');
this.name = 'BusyError';
Object.setPrototypeOf(this, BusyError.prototype);
}
}