@azure/msal-browser
Version:
Microsoft Authentication Library for js
18 lines (15 loc) • 584 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 UserAlreadySignedInError extends CustomAuthError {
constructor(correlationId) {
super("user_already_signed_in", "The user has already signed in.", correlationId);
Object.setPrototypeOf(this, UserAlreadySignedInError.prototype);
}
}
export { UserAlreadySignedInError };
//# sourceMappingURL=UserAlreadySignedInError.mjs.map