|
1234567891011121314151617 |
- namespace Shadowsocks.Crypto.Exception
- {
- public class CryptoErrorException : System.Exception
- {
- public CryptoErrorException()
- {
- }
-
- public CryptoErrorException(string msg) : base(msg)
- {
- }
-
- public CryptoErrorException(string message, System.Exception innerException) : base(message, innerException)
- {
- }
- }
- }
|