/src/CleanZip.Compression/WinZipAesException.cs

https://bitbucket.org/jens13/cleanzip · C# · 22 lines · 14 code · 3 blank · 5 comment · 0 complexity · bc932651d929cb5c0361819f58558ca7 MD5 · raw file

  1. // Copyright Jens Granlund 2012.
  2. // Distributed under the New BSD License.
  3. // (See accompanying file notice.txt or at
  4. // http://www.opensource.org/licenses/bsd-license.php)
  5. // Source: https://bitbucket.org/jens13/cleanzip
  6. using System;
  7. namespace CleanZip.Compression
  8. {
  9. public class WinZipAesException : Exception
  10. {
  11. public WinZipAesException()
  12. : base("Error reading Aes excrypted zip file")
  13. {
  14. }
  15. public WinZipAesException(string message) : base(message)
  16. {
  17. }
  18. }
  19. }