UNPKG

@azure/msal-browser

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