/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
- // Copyright Jens Granlund 2012.
- // Distributed under the New BSD License.
- // (See accompanying file notice.txt or at
- // http://www.opensource.org/licenses/bsd-license.php)
- // Source: https://bitbucket.org/jens13/cleanzip
- using System;
- namespace CleanZip.Compression
- {
- public class WinZipAesException : Exception
- {
- public WinZipAesException()
- : base("Error reading Aes excrypted zip file")
- {
- }
- public WinZipAesException(string message) : base(message)
- {
- }
- }
- }