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