CryptographicException.cs 218 B

123456789101112
  1. using System;
  2. namespace SharpCompress.Common
  3. {
  4. public class CryptographicException : Exception
  5. {
  6. public CryptographicException(string message)
  7. : base(message)
  8. {
  9. }
  10. }
  11. }