Files
Archive/shadowsocks-windows/shadowsocks-csharp/Encryption/Exception/CryptoException.cs
2024-12-31 19:31:59 +01:00

17 lines
395 B
C#

namespace Shadowsocks.Encryption.Exception
{
public class CryptoErrorException : System.Exception
{
public CryptoErrorException()
{
}
public CryptoErrorException(string msg) : base(msg)
{
}
public CryptoErrorException(string message, System.Exception innerException) : base(message, innerException)
{
}
}
}