Ombi/src/Ombi.Helpers/RuleNotFoundException.cs
2017-07-06 16:24:51 +01:00

12 lines
228 B
C#

using System;
namespace Ombi.Helpers
{
public class RuleNotFoundException : Exception
{
public RuleNotFoundException(string rule) : base($"rule: {rule} was not found")
{
}
}
}