Sieve/Sieve/Exceptions/SieveMethodNotFoundException.cs
2018-02-15 18:40:35 +10:00

22 lines
584 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Sieve.Exceptions
{
public class SieveMethodNotFoundException : SieveException
{
public string MethodName { get; protected set; }
public SieveMethodNotFoundException(string methodName, string message) : base (message)
{
MethodName = methodName;
}
public SieveMethodNotFoundException(string methodName, string message, Exception innerException) : base(message, innerException)
{
MethodName = methodName;
}
}
}