123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #if UNMANAGED
- namespace SevenZip
- {
- using System;
- using System.Runtime.Serialization;
- /// <summary>
- /// Exception class for 7-zip library operations.
- /// </summary>
- [Serializable]
- public class SevenZipLibraryException : SevenZipException
- {
- /// <summary>
- /// Exception default message which is displayed if no extra information is specified
- /// </summary>
- public const string DEFAULT_MESSAGE = "Can not load 7-zip library or internal COM error!";
- /// <summary>
- /// Initializes a new instance of the SevenZipLibraryException class
- /// </summary>
- public SevenZipLibraryException() : base(DEFAULT_MESSAGE) { }
- /// <summary>
- /// Initializes a new instance of the SevenZipLibraryException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- public SevenZipLibraryException(string message) : base(DEFAULT_MESSAGE, message) { }
- /// <summary>
- /// Initializes a new instance of the SevenZipLibraryException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- /// <param name="inner">Inner exception occurred</param>
- public SevenZipLibraryException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) { }
- /// <summary>
- /// Initializes a new instance of the SevenZipLibraryException class
- /// </summary>
- /// <param name="info">All data needed for serialization or deserialization</param>
- /// <param name="context">Serialized stream descriptor</param>
- protected SevenZipLibraryException(
- SerializationInfo info, StreamingContext context)
- : base(info, context) { }
- }
- }
- #endif
|