@azure/msal-browser
Version:
Microsoft Authentication Library for js
18 lines (15 loc) • 587 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 NoCachedAccountFoundError extends CustomAuthError {
constructor(correlationId) {
super("no_cached_account_found", "No account found in the cache", correlationId);
Object.setPrototypeOf(this, NoCachedAccountFoundError.prototype);
}
}
export { NoCachedAccountFoundError };
//# sourceMappingURL=NoCachedAccountFoundError.mjs.map