treasurechest/treasurechest/chestcrypto/doublekey/exceptions.cs

22 lines
408 B
C#

using System;
namespace chestcrypto {
public class InvalidDoubleKeyException : Exception
{
public InvalidDoubleKeyException()
{
}
public InvalidDoubleKeyException(string message)
: base(message)
{
}
public InvalidDoubleKeyException(string message, Exception inner)
: base(message, inner)
{
}
}
}