// ╔═══════╗╔═══════╗╔═══════╗╔═══════╗╔═══════╗╔═══════╗╔═══════╗ // ╚══╗ ╔══╝║ ╔╗ ╔╗ ║║ ╔═══╗ ║║ ╔═══╗ ║║ ╔═══╗ ║╚══╗ ╔══╝║ ╔═════╝ // ║ ║ ║ ║║ ║║ ║║ ╚═══╝ ║║ ║ ║ ║║ ╚═══╝ ║ ║ ║ ║ ╚═════╗ // ║ ║ ║ ║║ ║║ ║║ ╔═════╝║ ║ ║ ║║ ╔═╗ ╔═╝ ║ ║ ╚═════╗ ║ // ╔══╝ ╚══╗║ ║║ ║║ ║║ ║ ║ ╚═══╝ ║║ ║ ║ ╚═╗ ║ ║ ╔═════╝ ║ // ╚═══════╝╚═╝╚═╝╚═╝╚═╝ ╚═══════╝╚═╝ ╚═══╝ ╚═╝ ╚═══════╝ import * as errorModule from '../../../error/error-module.js'; // ╔═╗ ╔═══════╗╔══════╗ ╔═══════╗╔═╗ // ║ ║ ║ ╔═══╗ ║║ ╔══╗ ║ ║ ╔═════╝║ ║ // ║ ║ ║ ╚═══╝ ║║ ╚══╝ ╚╗║ ╚═════╗║ ║ // ║ ║ ║ ╔═══╗ ║║ ╔═══╗ ║║ ╔═════╝║ ║ // ║ ╚═════╗║ ║ ║ ║║ ╚═══╝ ║║ ╚═════╗║ ╚═════╗ // ╚═══════╝╚═╝ ╚═╝╚═══════╝╚═══════╝╚═══════╝ export class UnregisteredAbsorbLmsConnectionLabelError extends errorModule.AbsorbLmsError { constructor(message = 'The referenced Absorb LMS connection label is not registered.') { super('UnregisteredAbsorbLmsConnectionLabelError', message); } } export function throwUnregisteredConnectionLabelError(message?: string): never { throw new UnregisteredAbsorbLmsConnectionLabelError(message); }