@azure/msal-browser
Version:
Microsoft Authentication Library for js
19 lines (16 loc) • 678 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 MethodNotImplementedError extends CustomAuthError {
constructor(method, correlationId) {
const errorDescription = `The method '${method}' is not implemented, please do not use.`;
super("method_not_implemented", errorDescription, correlationId);
Object.setPrototypeOf(this, MethodNotImplementedError.prototype);
}
}
export { MethodNotImplementedError };
//# sourceMappingURL=MethodNotImplementedError.mjs.map