UNPKG

@azure/msal-browser

Version:
19 lines (16 loc) 678 B
/*! @azure/msal-browser v5.10.1 2026-05-11 */ 'use strict'; 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