UNPKG

@azure/msal-node-extensions

Version:

![npm (scoped)](https://img.shields.io/npm/v/@azure/msal-node-extensions) ![npm](https://img.shields.io/npm/dw/@azure/msal-node-extensions)

21 lines (18 loc) 657 B
/*! @azure/msal-node-extensions v1.5.9 2025-03-25 */ 'use strict'; 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