mirror of
https://github.com/Biarity/Sieve.git
synced 2025-04-12 23:12:53 +02:00
22 lines
584 B
C#
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;
|
|
}
|
|
}
|
|
}
|