mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-02-01 19:51:55 +01:00
12 lines
401 B
Java
12 lines
401 B
Java
package nodomain.freeyourgadget.gadgetbridge.util;
|
|
|
|
public class ZipFileException extends Exception {
|
|
public ZipFileException(final String message) {
|
|
super(String.format("Error while reading ZIP file: %s", message));
|
|
}
|
|
|
|
public ZipFileException(final String message, final Throwable cause) {
|
|
super(String.format("Error while reading ZIP file: %s", message), cause);
|
|
}
|
|
}
|