mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-11 20:49:25 +01:00
1d41f2f8e4
The notfification APIs now use NotificationSpec as their only parameter, which contains all information (required and optional ones). We no longer have separate methods and actions for SMS/EMAIL/GENERIC anymore. The type of notification is important now, not how we received them technically.
20 lines
383 B
Java
20 lines
383 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();
|
|
}
|
|
}
|