RegexBot/ConfigItem/RuleImportException.cs

12 lines
300 B
C#

using System;
namespace Noikoio.RegexBot.ConfigItem
{
/// <summary>
/// Exception thrown during an attempt to read rule configuration.
/// </summary>
public class RuleImportException : Exception
{
public RuleImportException(string message) : base(message) { }
}
}