You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

CryptoException.cs 389 B

1234567891011121314151617
  1. namespace Shadowsocks.Crypto.Exception
  2. {
  3. public class CryptoErrorException : System.Exception
  4. {
  5. public CryptoErrorException()
  6. {
  7. }
  8. public CryptoErrorException(string msg) : base(msg)
  9. {
  10. }
  11. public CryptoErrorException(string message, System.Exception innerException) : base(message, innerException)
  12. {
  13. }
  14. }
  15. }