mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
802f48011d
- the db is now exclusively locked for one thread - the charts read from the db and analyze data in a background thread + some small cleanups
17 lines
380 B
Java
17 lines
380 B
Java
package nodomain.freeyourgadget.gadgetbridge;
|
|
|
|
public class GBException extends Exception {
|
|
public GBException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
public GBException(String message) {
|
|
super(message);
|
|
}
|
|
public GBException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
public GBException() {
|
|
super();
|
|
}
|
|
}
|