UNPKG

ldapts

Version:
11 lines (8 loc) 336 B
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); } }