ldapts
Version:
LDAP client
11 lines (8 loc) • 336 B
text/typescript
import { ResultCodeError } from './ResultCodeError.js';
export class TLSNotSupportedError extends ResultCodeError {
public constructor(message?: string) {
super(112, message ?? 'TLS is not supported on the server.');
this.name = 'TLSNotSupportedError';
Object.setPrototypeOf(this, TLSNotSupportedError.prototype);
}
}