mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-22 13:32:33 +01:00
24 lines
549 B
C#
24 lines
549 B
C#
using System;
|
|
|
|
namespace Sieve.Exceptions
|
|
{
|
|
public class SieveException : Exception
|
|
{
|
|
public SieveException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public SieveException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
|
|
public SieveException()
|
|
{
|
|
}
|
|
|
|
protected SieveException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
}
|
|
}
|