You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
636 B

  1. using System;
  2. #if !NETCF_1_0 && !NETCF_2_0
  3. using System.Runtime.Serialization;
  4. #endif
  5. namespace Externals.Compression
  6. {
  7. [Serializable]
  8. internal class ZipBaseException : ApplicationException
  9. {
  10. protected ZipBaseException(SerializationInfo info, StreamingContext context) : base(info, context)
  11. {
  12. }
  13. public ZipBaseException()
  14. {
  15. }
  16. public ZipBaseException(string message)
  17. : base(message)
  18. {
  19. }
  20. public ZipBaseException(string message, Exception innerException)
  21. : base(message, innerException)
  22. {
  23. }
  24. }
  25. }