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