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