/Utilities/Compression/ZipException.cs
C# | 35 lines | 17 code | 4 blank | 14 comment | 0 complexity | 11bbe305eb01b8795cda4f15c02564be MD5 | raw file
1// Based on Mike Krueger's SharpZipLib, Copyright (C) 2001 (GNU license). 2// Authors of the original java version: Jochen Hoenicke, John Leuner 3// See http://www.ISeeSharpCode.com for more information. 4 5using System; 6 7namespace Delta.Utilities.Compression 8{ 9 /// <summary> 10 /// Represents errors specific to Zip file handling 11 /// </summary> 12 [Serializable] 13 public class ZipException : CompressionException 14 { 15 #region Constructors 16 /// <summary> 17 /// Initializes a new instance of the ZipException class. 18 /// </summary> 19 public ZipException() 20 { 21 } 22 23 // ZipException() 24 25 /// <summary> 26 /// Initializes a new instance of the ZipException class with a specified 27 /// error message. 28 /// </summary> 29 public ZipException(string msg) 30 : base(msg) 31 { 32 } 33 #endregion 34 } 35}