PageRenderTime 52ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/Utilities/Compression/ZipException.cs

#
C# | 35 lines | 17 code | 4 blank | 14 comment | 0 complexity | 11bbe305eb01b8795cda4f15c02564be MD5 | raw file
Possible License(s): Apache-2.0
  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. using System;
  5. namespace Delta.Utilities.Compression
  6. {
  7. /// <summary>
  8. /// Represents errors specific to Zip file handling
  9. /// </summary>
  10. [Serializable]
  11. public class ZipException : CompressionException
  12. {
  13. #region Constructors
  14. /// <summary>
  15. /// Initializes a new instance of the ZipException class.
  16. /// </summary>
  17. public ZipException()
  18. {
  19. }
  20. // ZipException()
  21. /// <summary>
  22. /// Initializes a new instance of the ZipException class with a specified
  23. /// error message.
  24. /// </summary>
  25. public ZipException(string msg)
  26. : base(msg)
  27. {
  28. }
  29. #endregion
  30. }
  31. }