mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-02-01 11:42:18 +01:00
8 lines
223 B
Java
8 lines
223 B
Java
|
package nodomain.freeyourgadget.gadgetbridge.util;
|
||
|
|
||
|
public class ZipFileException extends Exception {
|
||
|
public ZipFileException(String message) {
|
||
|
super(String.format("Error while reading ZIP file: %s", message));
|
||
|
}
|
||
|
}
|