Exceptions.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. 
  2. using System;
  3. #if !WINCE
  4. using System.Runtime.Serialization;
  5. #endif
  6. namespace SevenZip
  7. {
  8. /// <summary>
  9. /// Base SevenZip exception class.
  10. /// </summary>
  11. [Serializable]
  12. public class SevenZipException : Exception
  13. {
  14. /// <summary>
  15. /// The message for thrown user exceptions.
  16. /// </summary>
  17. internal const string USER_EXCEPTION_MESSAGE = "The extraction was successful but" +
  18. "some exceptions were thrown in your events. Check UserExceptions for details.";
  19. /// <summary>
  20. /// Initializes a new instance of the SevenZipException class
  21. /// </summary>
  22. public SevenZipException() : base("SevenZip unknown exception.") {}
  23. /// <summary>
  24. /// Initializes a new instance of the SevenZipException class
  25. /// </summary>
  26. /// <param name="defaultMessage">Default exception message</param>
  27. public SevenZipException(string defaultMessage)
  28. : base(defaultMessage) {}
  29. /// <summary>
  30. /// Initializes a new instance of the SevenZipException class
  31. /// </summary>
  32. /// <param name="defaultMessage">Default exception message</param>
  33. /// <param name="message">Additional detailed message</param>
  34. public SevenZipException(string defaultMessage, string message)
  35. : base(defaultMessage + " Message: " + message) {}
  36. /// <summary>
  37. /// Initializes a new instance of the SevenZipException class
  38. /// </summary>
  39. /// <param name="defaultMessage">Default exception message</param>
  40. /// <param name="message">Additional detailed message</param>
  41. /// <param name="inner">Inner exception occured</param>
  42. public SevenZipException(string defaultMessage, string message, Exception inner)
  43. : base(
  44. defaultMessage + (defaultMessage.EndsWith(" ", StringComparison.CurrentCulture) ? "" : " Message: ") +
  45. message, inner) {}
  46. /// <summary>
  47. /// Initializes a new instance of the SevenZipException class
  48. /// </summary>
  49. /// <param name="defaultMessage">Default exception message</param>
  50. /// <param name="inner">Inner exception occured</param>
  51. public SevenZipException(string defaultMessage, Exception inner)
  52. : base(defaultMessage, inner) {}
  53. #if !WINCE
  54. /// <summary>
  55. /// Initializes a new instance of the SevenZipException class
  56. /// </summary>
  57. /// <param name="info">All data needed for serialization or deserialization</param>
  58. /// <param name="context">Serialized stream descriptor</param>
  59. protected SevenZipException(
  60. SerializationInfo info, StreamingContext context)
  61. : base(info, context) {}
  62. #endif
  63. }
  64. #if UNMANAGED
  65. /// <summary>
  66. /// Exception class for ArchiveExtractCallback.
  67. /// </summary>
  68. [Serializable]
  69. public class ExtractionFailedException : SevenZipException
  70. {
  71. /// <summary>
  72. /// Exception dafault message which is displayed if no extra information is specified
  73. /// </summary>
  74. public const string DEFAULT_MESSAGE = "Could not extract files!";
  75. /// <summary>
  76. /// Initializes a new instance of the ExtractionFailedException class
  77. /// </summary>
  78. public ExtractionFailedException() : base(DEFAULT_MESSAGE) {}
  79. /// <summary>
  80. /// Initializes a new instance of the ExtractionFailedException class
  81. /// </summary>
  82. /// <param name="message">Additional detailed message</param>
  83. public ExtractionFailedException(string message) : base(DEFAULT_MESSAGE, message) {}
  84. /// <summary>
  85. /// Initializes a new instance of the ExtractionFailedException class
  86. /// </summary>
  87. /// <param name="message">Additional detailed message</param>
  88. /// <param name="inner">Inner exception occured</param>
  89. public ExtractionFailedException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) {}
  90. #if !WINCE
  91. /// <summary>
  92. /// Initializes a new instance of the ExtractionFailedException class
  93. /// </summary>
  94. /// <param name="info">All data needed for serialization or deserialization</param>
  95. /// <param name="context">Serialized stream descriptor</param>
  96. protected ExtractionFailedException(
  97. SerializationInfo info, StreamingContext context)
  98. : base(info, context) {}
  99. #endif
  100. }
  101. #if COMPRESS
  102. /// <summary>
  103. /// Exception class for ArchiveUpdateCallback.
  104. /// </summary>
  105. [Serializable]
  106. public class CompressionFailedException : SevenZipException
  107. {
  108. /// <summary>
  109. /// Exception dafault message which is displayed if no extra information is specified
  110. /// </summary>
  111. public const string DEFAULT_MESSAGE = "Could not pack files!";
  112. /// <summary>
  113. /// Initializes a new instance of the CompressionFailedException class
  114. /// </summary>
  115. public CompressionFailedException() : base(DEFAULT_MESSAGE) {}
  116. /// <summary>
  117. /// Initializes a new instance of the CompressionFailedException class
  118. /// </summary>
  119. /// <param name="message">Additional detailed message</param>
  120. public CompressionFailedException(string message) : base(DEFAULT_MESSAGE, message) {}
  121. /// <summary>
  122. /// Initializes a new instance of the CompressionFailedException class
  123. /// </summary>
  124. /// <param name="message">Additional detailed message</param>
  125. /// <param name="inner">Inner exception occured</param>
  126. public CompressionFailedException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) {}
  127. #if !WINCE
  128. /// <summary>
  129. /// Initializes a new instance of the CompressionFailedException class
  130. /// </summary>
  131. /// <param name="info">All data needed for serialization or deserialization</param>
  132. /// <param name="context">Serialized stream descriptor</param>
  133. protected CompressionFailedException(
  134. SerializationInfo info, StreamingContext context)
  135. : base(info, context) {}
  136. #endif
  137. }
  138. #endif
  139. #endif
  140. /// <summary>
  141. /// Exception class for LZMA operations.
  142. /// </summary>
  143. [Serializable]
  144. public class LzmaException : SevenZipException
  145. {
  146. /// <summary>
  147. /// Exception dafault message which is displayed if no extra information is specified
  148. /// </summary>
  149. public const string DEFAULT_MESSAGE = "Specified stream is not a valid LZMA compressed stream!";
  150. /// <summary>
  151. /// Initializes a new instance of the LzmaException class
  152. /// </summary>
  153. public LzmaException() : base(DEFAULT_MESSAGE) {}
  154. /// <summary>
  155. /// Initializes a new instance of the LzmaException class
  156. /// </summary>
  157. /// <param name="message">Additional detailed message</param>
  158. public LzmaException(string message) : base(DEFAULT_MESSAGE, message) {}
  159. /// <summary>
  160. /// Initializes a new instance of the LzmaException class
  161. /// </summary>
  162. /// <param name="message">Additional detailed message</param>
  163. /// <param name="inner">Inner exception occured</param>
  164. public LzmaException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) {}
  165. #if !WINCE
  166. /// <summary>
  167. /// Initializes a new instance of the LzmaException class
  168. /// </summary>
  169. /// <param name="info">All data needed for serialization or deserialization</param>
  170. /// <param name="context">Serialized stream descriptor</param>
  171. protected LzmaException(
  172. SerializationInfo info, StreamingContext context)
  173. : base(info, context) {}
  174. #endif
  175. }
  176. #if UNMANAGED
  177. /// <summary>
  178. /// Exception class for 7-zip archive open or read operations.
  179. /// </summary>
  180. [Serializable]
  181. public class SevenZipArchiveException : SevenZipException
  182. {
  183. /// <summary>
  184. /// Exception dafault message which is displayed if no extra information is specified
  185. /// </summary>
  186. public const string DEFAULT_MESSAGE =
  187. "Invalid archive: open/read error! Is it encrypted and a wrong password was provided?\n" +
  188. "If your archive is an exotic one, it is possible that SevenZipSharp has no signature for "+
  189. "its format and thus decided it is TAR by mistake.";
  190. /// <summary>
  191. /// Initializes a new instance of the SevenZipArchiveException class
  192. /// </summary>
  193. public SevenZipArchiveException() : base(DEFAULT_MESSAGE) {}
  194. /// <summary>
  195. /// Initializes a new instance of the SevenZipArchiveException class
  196. /// </summary>
  197. /// <param name="message">Additional detailed message</param>
  198. public SevenZipArchiveException(string message) : base(DEFAULT_MESSAGE, message) {}
  199. /// <summary>
  200. /// Initializes a new instance of the SevenZipArchiveException class
  201. /// </summary>
  202. /// <param name="message">Additional detailed message</param>
  203. /// <param name="inner">Inner exception occured</param>
  204. public SevenZipArchiveException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) {}
  205. #if !WINCE
  206. /// <summary>
  207. /// Initializes a new instance of the SevenZipArchiveException class
  208. /// </summary>
  209. /// <param name="info">All data needed for serialization or deserialization</param>
  210. /// <param name="context">Serialized stream descriptor</param>
  211. protected SevenZipArchiveException(
  212. SerializationInfo info, StreamingContext context)
  213. : base(info, context) {}
  214. #endif
  215. }
  216. /// <summary>
  217. /// Exception class for empty common root if file name array in SevenZipCompressor.
  218. /// </summary>
  219. [Serializable]
  220. public class SevenZipInvalidFileNamesException : SevenZipException
  221. {
  222. /// <summary>
  223. /// Exception dafault message which is displayed if no extra information is specified
  224. /// </summary>
  225. public const string DEFAULT_MESSAGE = "Invalid file names have been specified: ";
  226. /// <summary>
  227. /// Initializes a new instance of the SevenZipInvalidFileNamesException class
  228. /// </summary>
  229. public SevenZipInvalidFileNamesException() : base(DEFAULT_MESSAGE) {}
  230. /// <summary>
  231. /// Initializes a new instance of the SevenZipInvalidFileNamesException class
  232. /// </summary>
  233. /// <param name="message">Additional detailed message</param>
  234. public SevenZipInvalidFileNamesException(string message) : base(DEFAULT_MESSAGE, message) {}
  235. /// <summary>
  236. /// Initializes a new instance of the SevenZipInvalidFileNamesException class
  237. /// </summary>
  238. /// <param name="message">Additional detailed message</param>
  239. /// <param name="inner">Inner exception occured</param>
  240. public SevenZipInvalidFileNamesException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) {}
  241. #if !WINCE
  242. /// <summary>
  243. /// Initializes a new instance of the SevenZipInvalidFileNamesException class
  244. /// </summary>
  245. /// <param name="info">All data needed for serialization or deserialization</param>
  246. /// <param name="context">Serialized stream descriptor</param>
  247. protected SevenZipInvalidFileNamesException(
  248. SerializationInfo info, StreamingContext context)
  249. : base(info, context) {}
  250. #endif
  251. }
  252. #if COMPRESS
  253. /// <summary>
  254. /// Exception class for fail to create an archive in SevenZipCompressor.
  255. /// </summary>
  256. [Serializable]
  257. public class SevenZipCompressionFailedException : SevenZipException
  258. {
  259. /// <summary>
  260. /// Exception dafault message which is displayed if no extra information is specified
  261. /// </summary>
  262. public const string DEFAULT_MESSAGE = "The compression has failed for an unknown reason with code ";
  263. /// <summary>
  264. /// Initializes a new instance of the SevenZipCompressionFailedException class
  265. /// </summary>
  266. public SevenZipCompressionFailedException() : base(DEFAULT_MESSAGE) {}
  267. /// <summary>
  268. /// Initializes a new instance of the SevenZipCompressionFailedException class
  269. /// </summary>
  270. /// <param name="message">Additional detailed message</param>
  271. public SevenZipCompressionFailedException(string message) : base(DEFAULT_MESSAGE, message) {}
  272. /// <summary>
  273. /// Initializes a new instance of the SevenZipCompressionFailedException class
  274. /// </summary>
  275. /// <param name="message">Additional detailed message</param>
  276. /// <param name="inner">Inner exception occured</param>
  277. public SevenZipCompressionFailedException(string message, Exception inner)
  278. : base(DEFAULT_MESSAGE, message, inner) {}
  279. #if !WINCE
  280. /// <summary>
  281. /// Initializes a new instance of the SevenZipCompressionFailedException class
  282. /// </summary>
  283. /// <param name="info">All data needed for serialization or deserialization</param>
  284. /// <param name="context">Serialized stream descriptor</param>
  285. protected SevenZipCompressionFailedException(
  286. SerializationInfo info, StreamingContext context)
  287. : base(info, context) {}
  288. #endif
  289. }
  290. #endif
  291. /// <summary>
  292. /// Exception class for fail to extract an archive in SevenZipExtractor.
  293. /// </summary>
  294. [Serializable]
  295. public class SevenZipExtractionFailedException : SevenZipException
  296. {
  297. /// <summary>
  298. /// Exception dafault message which is displayed if no extra information is specified
  299. /// </summary>
  300. public const string DEFAULT_MESSAGE = "The extraction has failed for an unknown reason with code ";
  301. /// <summary>
  302. /// Initializes a new instance of the SevenZipExtractionFailedException class
  303. /// </summary>
  304. public SevenZipExtractionFailedException() : base(DEFAULT_MESSAGE) {}
  305. /// <summary>
  306. /// Initializes a new instance of the SevenZipExtractionFailedException class
  307. /// </summary>
  308. /// <param name="message">Additional detailed message</param>
  309. public SevenZipExtractionFailedException(string message) : base(DEFAULT_MESSAGE, message) {}
  310. /// <summary>
  311. /// Initializes a new instance of the SevenZipExtractionFailedException class
  312. /// </summary>
  313. /// <param name="message">Additional detailed message</param>
  314. /// <param name="inner">Inner exception occured</param>
  315. public SevenZipExtractionFailedException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) {}
  316. #if !WINCE
  317. /// <summary>
  318. /// Initializes a new instance of the SevenZipExtractionFailedException class
  319. /// </summary>
  320. /// <param name="info">All data needed for serialization or deserialization</param>
  321. /// <param name="context">Serialized stream descriptor</param>
  322. protected SevenZipExtractionFailedException(
  323. SerializationInfo info, StreamingContext context)
  324. : base(info, context) {}
  325. #endif
  326. }
  327. /// <summary>
  328. /// Exception class for 7-zip library operations.
  329. /// </summary>
  330. [Serializable]
  331. public class SevenZipLibraryException : SevenZipException
  332. {
  333. /// <summary>
  334. /// Exception dafault message which is displayed if no extra information is specified
  335. /// </summary>
  336. public const string DEFAULT_MESSAGE = "Can not load 7-zip library or internal COM error!";
  337. /// <summary>
  338. /// Initializes a new instance of the SevenZipLibraryException class
  339. /// </summary>
  340. public SevenZipLibraryException() : base(DEFAULT_MESSAGE) {}
  341. /// <summary>
  342. /// Initializes a new instance of the SevenZipLibraryException class
  343. /// </summary>
  344. /// <param name="message">Additional detailed message</param>
  345. public SevenZipLibraryException(string message) : base(DEFAULT_MESSAGE, message) {}
  346. /// <summary>
  347. /// Initializes a new instance of the SevenZipLibraryException class
  348. /// </summary>
  349. /// <param name="message">Additional detailed message</param>
  350. /// <param name="inner">Inner exception occured</param>
  351. public SevenZipLibraryException(string message, Exception inner) : base(DEFAULT_MESSAGE, message, inner) {}
  352. #if !WINCE
  353. /// <summary>
  354. /// Initializes a new instance of the SevenZipLibraryException class
  355. /// </summary>
  356. /// <param name="info">All data needed for serialization or deserialization</param>
  357. /// <param name="context">Serialized stream descriptor</param>
  358. protected SevenZipLibraryException(
  359. SerializationInfo info, StreamingContext context)
  360. : base(info, context) {}
  361. #endif
  362. }
  363. #endif
  364. #if SFX
  365. /// <summary>
  366. /// Exception class for 7-zip sfx settings validation.
  367. /// </summary>
  368. [Serializable]
  369. public class SevenZipSfxValidationException : SevenZipException
  370. {
  371. /// <summary>
  372. /// Exception dafault message which is displayed if no extra information is specified
  373. /// </summary>
  374. public static readonly string DefaultMessage = "Sfx settings validation failed.";
  375. /// <summary>
  376. /// Initializes a new instance of the SevenZipSfxValidationException class
  377. /// </summary>
  378. public SevenZipSfxValidationException() : base(DefaultMessage) {}
  379. /// <summary>
  380. /// Initializes a new instance of the SevenZipSfxValidationException class
  381. /// </summary>
  382. /// <param name="message">Additional detailed message</param>
  383. public SevenZipSfxValidationException(string message) : base(DefaultMessage, message) {}
  384. /// <summary>
  385. /// Initializes a new instance of the SevenZipSfxValidationException class
  386. /// </summary>
  387. /// <param name="message">Additional detailed message</param>
  388. /// <param name="inner">Inner exception occured</param>
  389. public SevenZipSfxValidationException(string message, Exception inner) : base(DefaultMessage, message, inner) {}
  390. #if !WINCE
  391. /// <summary>
  392. /// Initializes a new instance of the SevenZipSfxValidationException class
  393. /// </summary>
  394. /// <param name="info">All data needed for serialization or deserialization</param>
  395. /// <param name="context">Serialized stream descriptor</param>
  396. protected SevenZipSfxValidationException(
  397. SerializationInfo info, StreamingContext context)
  398. : base(info, context) {}
  399. #endif
  400. }
  401. #endif
  402. }