@azure/msal-node-extensions
Version:
 
21 lines (18 loc) • 657 B
JavaScript
/*! @azure/msal-node-extensions v1.5.9 2025-03-25 */
;
import { AuthError } from '../lib/msal-common/dist/error/AuthError.mjs';
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
class NativeAuthError extends AuthError {
constructor(errorStatus, errorContext, errorCode, errorTag) {
super(errorStatus, errorContext);
this.name = "NativeAuthError";
this.statusCode = errorCode;
this.tag = errorTag;
Object.setPrototypeOf(this, NativeAuthError.prototype);
}
}
export { NativeAuthError };
//# sourceMappingURL=NativeAuthError.mjs.map