@azure/msal-browser
Version:
Microsoft Authentication Library for js
48 lines (45 loc) • 1.5 kB
JavaScript
/*! @azure/msal-browser v4.21.0 2025-08-19 */
;
import { AuthError } from '@azure/msal-common/browser';
import { CustomAuthError } from '../error/CustomAuthError.mjs';
import { MsalCustomAuthError } from '../error/MsalCustomAuthError.mjs';
import { UnexpectedError } from '../error/UnexpectedError.mjs';
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/*
* Base class for a result of an authentication operation.
* @typeParam TState - The type of the auth flow state.
* @typeParam TError - The type of error.
* @typeParam TData - The type of the result data.
*/
class AuthFlowResultBase {
/*
*constructor for ResultBase
* @param state - The state.
* @param data - The result data.
*/
constructor(state, data) {
this.state = state;
this.data = data;
}
/*
* Creates a CustomAuthError with an error.
* @param error - The error that occurred.
* @returns The auth error.
*/
static createErrorData(error) {
if (error instanceof CustomAuthError) {
return error;
}
else if (error instanceof AuthError) {
return new MsalCustomAuthError(error.errorCode, error.errorMessage, error.subError, error.correlationId);
}
else {
return new UnexpectedError(error);
}
}
}
export { AuthFlowResultBase };
//# sourceMappingURL=AuthFlowResultBase.mjs.map