ldapts
Version:
LDAP client
11 lines (8 loc) • 403 B
text/typescript
import { ResultCodeError } from './ResultCodeError.js';
export class NoSuchAttributeError extends ResultCodeError {
public constructor(message?: string) {
super(16, message ?? 'The attribute specified in the Modify Request or Compare Request operation does not exist in the entry.');
this.name = 'NoSuchAttributeError';
Object.setPrototypeOf(this, NoSuchAttributeError.prototype);
}
}