-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: clearer signalling of "zip overflow"
Related to #5.
- Loading branch information
1 parent
8b3f7ca
commit 65f681b
Showing
4 changed files
with
29 additions
and
9 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
src/main/java/net/e175/klaus/zip/ZipOverflowException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package net.e175.klaus.zip; | ||
|
||
import java.util.zip.ZipException; | ||
|
||
|
||
/** | ||
* A ZipException that marks cases when the current ZIP file format cannot accommodate the new offsets. | ||
*/ | ||
public final class ZipOverflowException extends ZipException { | ||
public ZipOverflowException() { | ||
} | ||
|
||
public ZipOverflowException(String s) { | ||
super(s); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters