// ╔═══════╗╔═══════╗╔═══════╗╔═══════╗╔═══════╗╔═══════╗╔═══════╗ // ╚══╗ ╔══╝║ ╔╗ ╔╗ ║║ ╔═══╗ ║║ ╔═══╗ ║║ ╔═══╗ ║╚══╗ ╔══╝║ ╔═════╝ // ║ ║ ║ ║║ ║║ ║║ ╚═══╝ ║║ ║ ║ ║║ ╚═══╝ ║ ║ ║ ║ ╚═════╗ // ║ ║ ║ ║║ ║║ ║║ ╔═════╝║ ║ ║ ║║ ╔═╗ ╔═╝ ║ ║ ╚═════╗ ║ // ╔══╝ ╚══╗║ ║║ ║║ ║║ ║ ║ ╚═══╝ ║║ ║ ║ ╚═╗ ║ ║ ╔═════╝ ║ // ╚═══════╝╚═╝╚═╝╚═╝╚═╝ ╚═══════╝╚═╝ ╚═══╝ ╚═╝ ╚═══════╝ import * as errorModule from '../../error/error-module.js'; // ╔═══════╗╔════╗╔═╗╔═══════╗╔═══════╗╔═══════╗╔═══════╗╔════╗╔═╗╔═══════╗ // ║ ╔═════╝║ ╔╗ ║║ ║╚╗ ╔══╗ ║║ ╔═══╗ ║║ ╔═══╗ ║╚══╗ ╔══╝║ ╔╗ ║║ ║╚══╗ ╔══╝ // ║ ╚═════╗║ ║║ ║║ ║ ║ ║ ║ ║║ ╚═══╝ ║║ ║ ║ ║ ║ ║ ║ ║║ ║║ ║ ║ ║ // ║ ╔═════╝║ ║║ ║║ ║ ║ ║ ║ ║║ ╔═════╝║ ║ ║ ║ ║ ║ ║ ║║ ║║ ║ ║ ║ // ║ ╚═════╗║ ║║ ╚╝ ║╔╝ ╚══╝ ║║ ║ ║ ╚═══╝ ║╔══╝ ╚══╗║ ║║ ╚╝ ║ ║ ║ // ╚═══════╝╚═╝╚════╝╚═══════╝╚═╝ ╚═══════╝╚═══════╝╚═╝╚════╝ ╚═╝ export class InvalidAbsorbLmsEndpointError extends errorModule.AbsorbLmsError { constructor(message = 'The referenced Absorb LMS endpoint is invalid.') { super('InvalidAbsorbLmsEndpointError', message); } } export function throwInvalidAbsorbLmsEndpointError(message?: string) { throw new InvalidAbsorbLmsEndpointError(message); }