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