mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-03-12 04:35:27 -07:00
12 lines
228 B
C#
12 lines
228 B
C#
using System;
|
|
|
|
namespace Ombi.Helpers
|
|
{
|
|
public class RuleNotFoundException : Exception
|
|
{
|
|
public RuleNotFoundException(string rule) : base($"rule: {rule} was not found")
|
|
{
|
|
|
|
}
|
|
}
|
|
} |