You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Trash/Config/ConfigurationException.cs

17 lines
344 B

using System;
namespace Trash.Config
{
public class ConfigurationException : Exception
{
public ConfigurationException(string propertyName, Type type)
{
PropertyName = propertyName;
Type = type;
}
public string PropertyName { get; }
public Type Type { get; }
}
}