/Utilities/Compression/ZipException.cs
# · C# · 35 lines · 17 code · 4 blank · 14 comment · 0 complexity · 11bbe305eb01b8795cda4f15c02564be MD5 · raw file
- // Based on Mike Krueger's SharpZipLib, Copyright (C) 2001 (GNU license).
- // Authors of the original java version: Jochen Hoenicke, John Leuner
- // See http://www.ISeeSharpCode.com for more information.
-
- using System;
-
- namespace Delta.Utilities.Compression
- {
- /// <summary>
- /// Represents errors specific to Zip file handling
- /// </summary>
- [Serializable]
- public class ZipException : CompressionException
- {
- #region Constructors
- /// <summary>
- /// Initializes a new instance of the ZipException class.
- /// </summary>
- public ZipException()
- {
- }
-
- // ZipException()
-
- /// <summary>
- /// Initializes a new instance of the ZipException class with a specified
- /// error message.
- /// </summary>
- public ZipException(string msg)
- : base(msg)
- {
- }
- #endregion
- }
- }