Lot's of refactoring

This commit is contained in:
Jamie.Rees 2017-07-06 16:24:51 +01:00
commit 263240c648
36 changed files with 732 additions and 660 deletions

View file

@ -0,0 +1,12 @@
using System;
namespace Ombi.Helpers
{
public class RuleNotFoundException : Exception
{
public RuleNotFoundException(string rule) : base($"rule: {rule} was not found")
{
}
}
}