@azure/msal-browser
Version:
Microsoft Authentication Library for js
18 lines (15 loc) • 597 B
JavaScript
/*! @azure/msal-browser v5.10.1 2026-05-11 */
;
import { CustomAuthError } from './CustomAuthError.mjs';
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
class MsalCustomAuthError extends CustomAuthError {
constructor(error, errorDescription, subError, errorCodes, correlationId) {
super(error, errorDescription, correlationId, errorCodes, subError);
Object.setPrototypeOf(this, MsalCustomAuthError.prototype);
}
}
export { MsalCustomAuthError };
//# sourceMappingURL=MsalCustomAuthError.mjs.map