UNPKG

ldapts

Version:
11 lines (8 loc) 461 B
import { ResultCodeError } from './ResultCodeError.js'; export class AlreadyExistsError extends ResultCodeError { public constructor(message?: string) { super(68, message ?? 'The add operation attempted to add an entry that already exists, or that the modify operation attempted to rename an entry to the name of an entry that already exists.'); this.name = 'AlreadyExistsError'; Object.setPrototypeOf(this, AlreadyExistsError.prototype); } }