123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449 |
-
- using System;
- #if !WINCE
- using System.Runtime.Serialization;
- #endif
- namespace SevenZip
- {
- /// <summary>
- /// Base SevenZip exception class.
- /// </summary>
- [Serializable]
- public class SevenZipException : Exception
- {
- /// <summary>
- /// The message for thrown user exceptions.
- /// </summary>
- internal const string USER_EXCEPTION_MESSAGE = "The extraction was successful but" +
- "some exceptions were thrown in your events. Check UserExceptions for details.";
- /// <summary>
- /// Initializes a new instance of the SevenZipException class
- /// </summary>
- public SevenZipException() : base("SevenZip unknown exception.") {}
- /// <summary>
- /// Initializes a new instance of the SevenZipException class
- /// </summary>
- /// <param name="defaultMessage">Default exception message</param>
- public SevenZipException(string defaultMessage)
- : base(defaultMessage) {}
- /// <summary>
- /// Initializes a new instance of the SevenZipException class
- /// </summary>
- /// <param name="defaultMessage">Default exception message</param>
- /// <param name="message">Additional detailed message</param>
- public SevenZipException(string defaultMessage, string message)
- : base(defaultMessage + " Message: " + message) {}
- /// <summary>
- /// Initializes a new instance of the SevenZipException class
- /// </summary>
- /// <param name="defaultMessage">Default exception message</param>
- /// <param name="message">Additional detailed message</param>
- /// <param name="inner">Inner exception occured</param>
- public SevenZipException(string defaultMessage, string message, Exception inner)
- : base(
- defaultMessage + (defaultMessage.EndsWith(" ", StringComparison.CurrentCulture) ? "" : " Message: ") +
- message, inner) {}
- /// <summary>
- /// Initializes a new instance of the SevenZipException class
- /// </summary>
- /// <param name="defaultMessage">Default exception message</param>
- /// <param name="inner">Inner exception occured</param>
- public SevenZipException(string defaultMessage, Exception inner)
- : base(defaultMessage, inner) {}
- #if !WINCE
- /// <summary>
- /// Initializes a new instance of the SevenZipException class
- /// </summary>
- /// <param name="info">All data needed for serialization or deserialization</param>
- /// <param name="context">Serialized stream descriptor</param>
- protected SevenZipException(
- SerializationInfo info, StreamingContext context)
- : base(info, context) {}
- #endif
- }
- #if UNMANAGED
-
- /// <summary>
- /// Exception class for ArchiveExtractCallback.
- /// </summary>
- [Serializable]
- public class ExtractionFailedException : SevenZipException
- {
- /// <summary>
- /// Exception dafault message which is displayed if no extra information is specified
- /// </summary>
- public const string DEFAULT_MESSAGE = "Could not extract files!";
- /// <summary>
- /// Initializes a new instance of the ExtractionFailedException class
- /// </summary>
- public ExtractionFailedException() : base(DEFAULT_MESSAGE) {}
- /// <summary>
- /// Initializes a new instance of the ExtractionFailedException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- public ExtractionFailedException(string message) : base(DEFAULT_MESSAGE, message) {}
- /// <summary>
- /// Initializes a new instance of the ExtractionFailedException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- /// <param name="inner">Inner exception occured</param>
- public ExtractionFailedException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) {}
- #if !WINCE
- /// <summary>
- /// Initializes a new instance of the ExtractionFailedException class
- /// </summary>
- /// <param name="info">All data needed for serialization or deserialization</param>
- /// <param name="context">Serialized stream descriptor</param>
- protected ExtractionFailedException(
- SerializationInfo info, StreamingContext context)
- : base(info, context) {}
- #endif
- }
- #if COMPRESS
-
- /// <summary>
- /// Exception class for ArchiveUpdateCallback.
- /// </summary>
- [Serializable]
- public class CompressionFailedException : SevenZipException
- {
- /// <summary>
- /// Exception dafault message which is displayed if no extra information is specified
- /// </summary>
- public const string DEFAULT_MESSAGE = "Could not pack files!";
- /// <summary>
- /// Initializes a new instance of the CompressionFailedException class
- /// </summary>
- public CompressionFailedException() : base(DEFAULT_MESSAGE) {}
- /// <summary>
- /// Initializes a new instance of the CompressionFailedException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- public CompressionFailedException(string message) : base(DEFAULT_MESSAGE, message) {}
- /// <summary>
- /// Initializes a new instance of the CompressionFailedException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- /// <param name="inner">Inner exception occured</param>
- public CompressionFailedException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) {}
- #if !WINCE
- /// <summary>
- /// Initializes a new instance of the CompressionFailedException class
- /// </summary>
- /// <param name="info">All data needed for serialization or deserialization</param>
- /// <param name="context">Serialized stream descriptor</param>
- protected CompressionFailedException(
- SerializationInfo info, StreamingContext context)
- : base(info, context) {}
- #endif
- }
- #endif
- #endif
-
- /// <summary>
- /// Exception class for LZMA operations.
- /// </summary>
- [Serializable]
- public class LzmaException : SevenZipException
- {
- /// <summary>
- /// Exception dafault message which is displayed if no extra information is specified
- /// </summary>
- public const string DEFAULT_MESSAGE = "Specified stream is not a valid LZMA compressed stream!";
- /// <summary>
- /// Initializes a new instance of the LzmaException class
- /// </summary>
- public LzmaException() : base(DEFAULT_MESSAGE) {}
- /// <summary>
- /// Initializes a new instance of the LzmaException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- public LzmaException(string message) : base(DEFAULT_MESSAGE, message) {}
- /// <summary>
- /// Initializes a new instance of the LzmaException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- /// <param name="inner">Inner exception occured</param>
- public LzmaException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) {}
- #if !WINCE
- /// <summary>
- /// Initializes a new instance of the LzmaException class
- /// </summary>
- /// <param name="info">All data needed for serialization or deserialization</param>
- /// <param name="context">Serialized stream descriptor</param>
- protected LzmaException(
- SerializationInfo info, StreamingContext context)
- : base(info, context) {}
- #endif
- }
- #if UNMANAGED
-
- /// <summary>
- /// Exception class for 7-zip archive open or read operations.
- /// </summary>
- [Serializable]
- public class SevenZipArchiveException : SevenZipException
- {
- /// <summary>
- /// Exception dafault message which is displayed if no extra information is specified
- /// </summary>
- public const string DEFAULT_MESSAGE =
- "Invalid archive: open/read error! Is it encrypted and a wrong password was provided?\n" +
- "If your archive is an exotic one, it is possible that SevenZipSharp has no signature for "+
- "its format and thus decided it is TAR by mistake.";
- /// <summary>
- /// Initializes a new instance of the SevenZipArchiveException class
- /// </summary>
- public SevenZipArchiveException() : base(DEFAULT_MESSAGE) {}
- /// <summary>
- /// Initializes a new instance of the SevenZipArchiveException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- public SevenZipArchiveException(string message) : base(DEFAULT_MESSAGE, message) {}
- /// <summary>
- /// Initializes a new instance of the SevenZipArchiveException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- /// <param name="inner">Inner exception occured</param>
- public SevenZipArchiveException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) {}
- #if !WINCE
- /// <summary>
- /// Initializes a new instance of the SevenZipArchiveException class
- /// </summary>
- /// <param name="info">All data needed for serialization or deserialization</param>
- /// <param name="context">Serialized stream descriptor</param>
- protected SevenZipArchiveException(
- SerializationInfo info, StreamingContext context)
- : base(info, context) {}
- #endif
- }
-
- /// <summary>
- /// Exception class for empty common root if file name array in SevenZipCompressor.
- /// </summary>
- [Serializable]
- public class SevenZipInvalidFileNamesException : SevenZipException
- {
- /// <summary>
- /// Exception dafault message which is displayed if no extra information is specified
- /// </summary>
- public const string DEFAULT_MESSAGE = "Invalid file names have been specified: ";
- /// <summary>
- /// Initializes a new instance of the SevenZipInvalidFileNamesException class
- /// </summary>
- public SevenZipInvalidFileNamesException() : base(DEFAULT_MESSAGE) {}
- /// <summary>
- /// Initializes a new instance of the SevenZipInvalidFileNamesException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- public SevenZipInvalidFileNamesException(string message) : base(DEFAULT_MESSAGE, message) {}
- /// <summary>
- /// Initializes a new instance of the SevenZipInvalidFileNamesException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- /// <param name="inner">Inner exception occured</param>
- public SevenZipInvalidFileNamesException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) {}
- #if !WINCE
- /// <summary>
- /// Initializes a new instance of the SevenZipInvalidFileNamesException class
- /// </summary>
- /// <param name="info">All data needed for serialization or deserialization</param>
- /// <param name="context">Serialized stream descriptor</param>
- protected SevenZipInvalidFileNamesException(
- SerializationInfo info, StreamingContext context)
- : base(info, context) {}
- #endif
- }
- #if COMPRESS
-
- /// <summary>
- /// Exception class for fail to create an archive in SevenZipCompressor.
- /// </summary>
- [Serializable]
- public class SevenZipCompressionFailedException : SevenZipException
- {
- /// <summary>
- /// Exception dafault message which is displayed if no extra information is specified
- /// </summary>
- public const string DEFAULT_MESSAGE = "The compression has failed for an unknown reason with code ";
- /// <summary>
- /// Initializes a new instance of the SevenZipCompressionFailedException class
- /// </summary>
- public SevenZipCompressionFailedException() : base(DEFAULT_MESSAGE) {}
- /// <summary>
- /// Initializes a new instance of the SevenZipCompressionFailedException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- public SevenZipCompressionFailedException(string message) : base(DEFAULT_MESSAGE, message) {}
- /// <summary>
- /// Initializes a new instance of the SevenZipCompressionFailedException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- /// <param name="inner">Inner exception occured</param>
- public SevenZipCompressionFailedException(string message, Exception inner)
- : base(DEFAULT_MESSAGE, message, inner) {}
- #if !WINCE
- /// <summary>
- /// Initializes a new instance of the SevenZipCompressionFailedException class
- /// </summary>
- /// <param name="info">All data needed for serialization or deserialization</param>
- /// <param name="context">Serialized stream descriptor</param>
- protected SevenZipCompressionFailedException(
- SerializationInfo info, StreamingContext context)
- : base(info, context) {}
- #endif
- }
- #endif
-
- /// <summary>
- /// Exception class for fail to extract an archive in SevenZipExtractor.
- /// </summary>
- [Serializable]
- public class SevenZipExtractionFailedException : SevenZipException
- {
- /// <summary>
- /// Exception dafault message which is displayed if no extra information is specified
- /// </summary>
- public const string DEFAULT_MESSAGE = "The extraction has failed for an unknown reason with code ";
- /// <summary>
- /// Initializes a new instance of the SevenZipExtractionFailedException class
- /// </summary>
- public SevenZipExtractionFailedException() : base(DEFAULT_MESSAGE) {}
- /// <summary>
- /// Initializes a new instance of the SevenZipExtractionFailedException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- public SevenZipExtractionFailedException(string message) : base(DEFAULT_MESSAGE, message) {}
- /// <summary>
- /// Initializes a new instance of the SevenZipExtractionFailedException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- /// <param name="inner">Inner exception occured</param>
- public SevenZipExtractionFailedException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) {}
- #if !WINCE
- /// <summary>
- /// Initializes a new instance of the SevenZipExtractionFailedException class
- /// </summary>
- /// <param name="info">All data needed for serialization or deserialization</param>
- /// <param name="context">Serialized stream descriptor</param>
- protected SevenZipExtractionFailedException(
- SerializationInfo info, StreamingContext context)
- : base(info, context) {}
- #endif
- }
-
- /// <summary>
- /// Exception class for 7-zip library operations.
- /// </summary>
- [Serializable]
- public class SevenZipLibraryException : SevenZipException
- {
- /// <summary>
- /// Exception dafault 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 occured</param>
- public SevenZipLibraryException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) {}
- #if !WINCE
- /// <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
- }
- #endif
- #if SFX
-
- /// <summary>
- /// Exception class for 7-zip sfx settings validation.
- /// </summary>
- [Serializable]
- public class SevenZipSfxValidationException : SevenZipException
- {
- /// <summary>
- /// Exception dafault message which is displayed if no extra information is specified
- /// </summary>
- public static readonly string DefaultMessage = "Sfx settings validation failed.";
- /// <summary>
- /// Initializes a new instance of the SevenZipSfxValidationException class
- /// </summary>
- public SevenZipSfxValidationException() : base(DefaultMessage) {}
- /// <summary>
- /// Initializes a new instance of the SevenZipSfxValidationException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- public SevenZipSfxValidationException(string message) : base(DefaultMessage, message) {}
- /// <summary>
- /// Initializes a new instance of the SevenZipSfxValidationException class
- /// </summary>
- /// <param name="message">Additional detailed message</param>
- /// <param name="inner">Inner exception occured</param>
- public SevenZipSfxValidationException(string message, Exception inner) : base(DefaultMessage, message, inner) {}
- #if !WINCE
- /// <summary>
- /// Initializes a new instance of the SevenZipSfxValidationException class
- /// </summary>
- /// <param name="info">All data needed for serialization or deserialization</param>
- /// <param name="context">Serialized stream descriptor</param>
- protected SevenZipSfxValidationException(
- SerializationInfo info, StreamingContext context)
- : base(info, context) {}
- #endif
- }
- #endif
- }
|