mirror of
https://github.com/bolucat/Archive.git
synced 2025-11-01 20:33:10 +08:00
17 lines
395 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |