]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/json/ApiNotSupportedException.java
detect and report API errors when saving new transactions
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / json / ApiNotSupportedException.java
index d552a6844e990ff8e63e970b45526b6cbb0925d5..7bf84514544d4231a6632cc6b86ff1395f7bf262 100644 (file)
 
 package net.ktnx.mobileledger.json;
 
-public class ApiNotSupportedException extends Throwable {}
+import androidx.annotation.Nullable;
+
+public class ApiNotSupportedException extends Throwable {
+    public ApiNotSupportedException() {
+    }
+    public ApiNotSupportedException(@Nullable String message) {
+        super(message);
+    }
+    public ApiNotSupportedException(@Nullable String message, @Nullable Throwable cause) {
+        super(message, cause);
+    }
+    public ApiNotSupportedException(@Nullable Throwable cause) {
+        super(cause);
+    }
+    public ApiNotSupportedException(@Nullable String message, @Nullable Throwable cause,
+                                    boolean enableSuppression, boolean writableStackTrace) {
+        super(message, cause, enableSuppression, writableStackTrace);
+    }
+}