123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #if UNMANAGED
- namespace SevenZip
- {
- using System;
- using System.Runtime.Serialization;
-
-
-
- [Serializable]
- public class SevenZipLibraryException : SevenZipException
- {
-
-
-
- public const string DEFAULT_MESSAGE = "Can not load 7-zip library or internal COM error!";
-
-
-
- public SevenZipLibraryException() : base(DEFAULT_MESSAGE) { }
-
-
-
-
- public SevenZipLibraryException(string message) : base(DEFAULT_MESSAGE, message) { }
-
-
-
-
-
- public SevenZipLibraryException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) { }
-
-
-
-
-
- protected SevenZipLibraryException(
- SerializationInfo info, StreamingContext context)
- : base(info, context) { }
- }
- }
- #endif
|