CryptoException.cs 432 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace SharpCompress.Crypto
  3. {
  4. public class CryptoException
  5. : Exception
  6. {
  7. public CryptoException()
  8. {
  9. }
  10. public CryptoException(
  11. string message)
  12. : base(message)
  13. {
  14. }
  15. public CryptoException(
  16. string message,
  17. Exception exception)
  18. : base(message, exception)
  19. {
  20. }
  21. }
  22. }