UNPKG

@azure/msal-browser

Version:
26 lines (23 loc) 947 B
/*! @azure/msal-browser v5.6.3 2026-04-01 */ 'use strict'; import { AuthError } from '@azure/msal-common/browser'; import { getDefaultErrorMessage } from './BrowserAuthError.mjs'; /* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Browser library error class thrown by the MSAL.js library for SPAs */ class BrowserConfigurationAuthError extends AuthError { constructor(errorCode, errorMessage) { super(errorCode, errorMessage); this.name = "BrowserConfigurationAuthError"; Object.setPrototypeOf(this, BrowserConfigurationAuthError.prototype); } } function createBrowserConfigurationAuthError(errorCode) { return new BrowserConfigurationAuthError(errorCode, getDefaultErrorMessage(errorCode)); } export { BrowserConfigurationAuthError, createBrowserConfigurationAuthError }; //# sourceMappingURL=BrowserConfigurationAuthError.mjs.map