// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#nullable enable
using System;
namespace Microsoft.PowerShell.Commands;
///
/// Thrown during evaluation of when an attempt
/// to resolve a $ref or $dynamicRef fails.
///
internal sealed class JsonSchemaReferenceResolutionException : Exception
{
///
/// Initializes a new instance of the class.
///
///
/// The exception that is the cause of the current exception, or a null reference
/// (Nothing in Visual Basic) if no inner exception is specified.
///
public JsonSchemaReferenceResolutionException(Exception innerException)
: base(message: null, innerException)
{
}
}