@equinor/fusion-framework-module-msal-node
Version:
Fusion Framework module for secure Azure AD authentication in Node.js using MSAL. Supports interactive, silent, and token-only authentication modes with encrypted token storage.
21 lines • 801 B
JavaScript
import { AuthServerError } from './AuthServerError.js';
/**
* Error thrown when the authentication server times out waiting for a response.
*
* Extends {@link AuthServerError} to provide additional context for timeout scenarios.
*
* @param message - Description of the error.
* @param options - Optional error options, including a cause for error chaining.
*/
export class AuthServerTimeoutError extends AuthServerError {
static Name = 'AuthServerTimeoutError';
/**
* @param message - Description of the error.
* @param options - Optional error options, including a cause for error chaining.
*/
constructor(message, options) {
super(message, options);
this.name = AuthServerTimeoutError.Name;
}
}
//# sourceMappingURL=AuthServerTimeoutError.js.map