UNPKG

@azure/msal-browser

Version:
19 lines (16 loc) 671 B
/*! @azure/msal-browser v5.10.1 2026-05-11 */ 'use strict'; import { CustomAuthError } from './CustomAuthError.mjs'; /* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ class UserAccountAttributeError extends CustomAuthError { constructor(error, attributeName, attributeValue) { const errorDescription = `Failed to set attribute '${attributeName}' with value '${attributeValue}'`; super(error, errorDescription); Object.setPrototypeOf(this, UserAccountAttributeError.prototype); } } export { UserAccountAttributeError }; //# sourceMappingURL=UserAccountAttributeError.mjs.map