@azure/msal-browser
Version:
Microsoft Authentication Library for js
19 lines (16 loc) • 671 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 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