UNPKG

@azure/msal-common

Version:
28 lines (25 loc) 889 B
/*! @azure/msal-common v16.6.2 2026-05-19 */ 'use strict'; import { AuthError } from './AuthError.mjs'; /* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * ClientAuthErrorMessage class containing string constants used by error codes and messages. */ /** * Error thrown when there is an error in the client code running on the browser. */ class ClientAuthError extends AuthError { constructor(errorCode, additionalMessage) { super(errorCode, additionalMessage); this.name = "ClientAuthError"; Object.setPrototypeOf(this, ClientAuthError.prototype); } } function createClientAuthError(errorCode, additionalMessage) { return new ClientAuthError(errorCode, additionalMessage); } export { ClientAuthError, createClientAuthError }; //# sourceMappingURL=ClientAuthError.mjs.map