[PR #834] [MERGED] Add SharpCompressException and use it or children in most places #1270

Open
opened 2026-01-29 22:19:44 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/adamhathcock/sharpcompress/pull/834
Author: @adamhathcock
Created: 4/23/2024
Status: Merged
Merged: 4/28/2025
Merged by: @adamhathcock

Base: masterHead: exception-normalization


📝 Commits (9)

  • 8cb621e Add SharpCompressException and use it or children in most places
  • a283d99 compiles
  • e31238d fmt
  • e4d5b56 fix more nulls and tests
  • 5d9c995 fmt
  • 95caffe Merge remote-tracking branch 'origin/master' into exception-normalization
  • d3a9e34 Merge fixes
  • a480a88 format
  • 1f39a0c Merge remote-tracking branch 'origin/master' into exception-normalization

📊 Changes

70 files changed (+234 additions, -258 deletions)

View changed files

📝 src/SharpCompress/Archives/AbstractArchive.cs (+1 -1)
📝 src/SharpCompress/Archives/AbstractWritableArchive.cs (+1 -1)
📝 src/SharpCompress/Archives/GZip/GZipArchive.cs (+2 -2)
📝 src/SharpCompress/Archives/GZip/GZipArchiveEntry.cs (+1 -1)
📝 src/SharpCompress/Archives/Rar/RarArchiveEntry.cs (+1 -1)
📝 src/SharpCompress/Archives/Tar/TarArchiveEntry.cs (+1 -1)
📝 src/SharpCompress/Archives/Zip/ZipArchiveEntry.cs (+1 -1)
src/SharpCompress/Common/ArchiveException.cs (+0 -9)
src/SharpCompress/Common/CryptographicException.cs (+0 -9)
src/SharpCompress/Common/ExtractionException.cs (+0 -12)
📝 src/SharpCompress/Common/FilePart.cs (+1 -1)
src/SharpCompress/Common/IncompleteArchiveException.cs (+0 -7)
src/SharpCompress/Common/InvalidFormatException.cs (+0 -12)
src/SharpCompress/Common/MultiVolumeExtractionException.cs (+0 -12)
src/SharpCompress/Common/MultipartStreamRequiredException.cs (+0 -7)
📝 src/SharpCompress/Common/Rar/CryptKey5.cs (+1 -1)
📝 src/SharpCompress/Common/Rar/Headers/ArchiveCryptHeader.cs (+0 -3)
📝 src/SharpCompress/Common/Rar/Headers/FileHeader.cs (+29 -20)
📝 src/SharpCompress/Common/Rar/Headers/RarHeader.cs (+1 -2)
📝 src/SharpCompress/Common/Rar/Headers/RarHeaderFactory.cs (+8 -5)

...and 50 more files

📄 Description

covers https://github.com/adamhathcock/sharpcompress/issues/830


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/adamhathcock/sharpcompress/pull/834 **Author:** [@adamhathcock](https://github.com/adamhathcock) **Created:** 4/23/2024 **Status:** ✅ Merged **Merged:** 4/28/2025 **Merged by:** [@adamhathcock](https://github.com/adamhathcock) **Base:** `master` ← **Head:** `exception-normalization` --- ### 📝 Commits (9) - [`8cb621e`](https://github.com/adamhathcock/sharpcompress/commit/8cb621ebed2557916840049c652ccccdbd31a37a) Add SharpCompressException and use it or children in most places - [`a283d99`](https://github.com/adamhathcock/sharpcompress/commit/a283d99e1b833ea2ea8181779593fe17d021fbd3) compiles - [`e31238d`](https://github.com/adamhathcock/sharpcompress/commit/e31238d12134b8efa75046f9090cad56b0717709) fmt - [`e4d5b56`](https://github.com/adamhathcock/sharpcompress/commit/e4d5b56951e66a1e7d3bbe95b74eb64e329e8595) fix more nulls and tests - [`5d9c995`](https://github.com/adamhathcock/sharpcompress/commit/5d9c99508dd9406c738de01a1ae15d329de6ff6e) fmt - [`95caffe`](https://github.com/adamhathcock/sharpcompress/commit/95caffe607ac606c945f976690afbc770b9f1f3b) Merge remote-tracking branch 'origin/master' into exception-normalization - [`d3a9e34`](https://github.com/adamhathcock/sharpcompress/commit/d3a9e341a5a7b8bba9c9a837fae83223a615e8b0) Merge fixes - [`a480a88`](https://github.com/adamhathcock/sharpcompress/commit/a480a8893c851f88cdf04666561f797f85e9a677) format - [`1f39a0c`](https://github.com/adamhathcock/sharpcompress/commit/1f39a0c9da5557a6d0fbe54c93ec8089fd16af53) Merge remote-tracking branch 'origin/master' into exception-normalization ### 📊 Changes **70 files changed** (+234 additions, -258 deletions) <details> <summary>View changed files</summary> 📝 `src/SharpCompress/Archives/AbstractArchive.cs` (+1 -1) 📝 `src/SharpCompress/Archives/AbstractWritableArchive.cs` (+1 -1) 📝 `src/SharpCompress/Archives/GZip/GZipArchive.cs` (+2 -2) 📝 `src/SharpCompress/Archives/GZip/GZipArchiveEntry.cs` (+1 -1) 📝 `src/SharpCompress/Archives/Rar/RarArchiveEntry.cs` (+1 -1) 📝 `src/SharpCompress/Archives/Tar/TarArchiveEntry.cs` (+1 -1) 📝 `src/SharpCompress/Archives/Zip/ZipArchiveEntry.cs` (+1 -1) ➖ `src/SharpCompress/Common/ArchiveException.cs` (+0 -9) ➖ `src/SharpCompress/Common/CryptographicException.cs` (+0 -9) ➖ `src/SharpCompress/Common/ExtractionException.cs` (+0 -12) 📝 `src/SharpCompress/Common/FilePart.cs` (+1 -1) ➖ `src/SharpCompress/Common/IncompleteArchiveException.cs` (+0 -7) ➖ `src/SharpCompress/Common/InvalidFormatException.cs` (+0 -12) ➖ `src/SharpCompress/Common/MultiVolumeExtractionException.cs` (+0 -12) ➖ `src/SharpCompress/Common/MultipartStreamRequiredException.cs` (+0 -7) 📝 `src/SharpCompress/Common/Rar/CryptKey5.cs` (+1 -1) 📝 `src/SharpCompress/Common/Rar/Headers/ArchiveCryptHeader.cs` (+0 -3) 📝 `src/SharpCompress/Common/Rar/Headers/FileHeader.cs` (+29 -20) 📝 `src/SharpCompress/Common/Rar/Headers/RarHeader.cs` (+1 -2) 📝 `src/SharpCompress/Common/Rar/Headers/RarHeaderFactory.cs` (+8 -5) _...and 50 more files_ </details> ### 📄 Description covers https://github.com/adamhathcock/sharpcompress/issues/830 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 22:19:44 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/sharpcompress#1270