@azure/msal-browser
Version:
Microsoft Authentication Library for js
19 lines (16 loc) • 629 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 InvalidArgumentError extends CustomAuthError {
constructor(argName, correlationId) {
const errorDescription = `The argument '${argName}' is invalid.`;
super("invalid_argument", errorDescription, correlationId);
Object.setPrototypeOf(this, InvalidArgumentError.prototype);
}
}
export { InvalidArgumentError };
//# sourceMappingURL=InvalidArgumentError.mjs.map