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