|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.TemplateEngine.Abstractions.Constraints;
namespace Microsoft.TemplateEngine.Edge.Constraints
{
/// <summary>
/// Exception occurred when parsing configuration for <see cref="ITemplateConstraint"/>.
/// </summary>
internal class ConfigurationException : Exception
{
public ConfigurationException(string message) : base(message)
{
}
public ConfigurationException(string message, Exception innerException) : base(message, innerException)
{
}
}
}
|