12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- using System;
- #if !NETCF_1_0 && !NETCF_2_0
- using System.Runtime.Serialization;
- #endif
- namespace CommonMPQ.SharpZipLib.Zip
- {
-
-
-
-
- #if !NETCF_1_0 && !NETCF_2_0
- [Serializable]
- #endif
- public class ZipException : SharpZipBaseException
- {
- #if !NETCF_1_0 && !NETCF_2_0
-
-
-
-
-
- protected ZipException(SerializationInfo info, StreamingContext context )
- : base( info, context )
- {
- }
- #endif
-
-
-
- public ZipException()
- {
- }
-
-
-
-
-
- public ZipException(string message)
- : base(message)
- {
- }
-
-
-
-
-
- public ZipException(string message, Exception exception)
- : base(message, exception)
- {
- }
- }
- }
|