X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fjson%2FApiNotSupportedException.java;h=7bf84514544d4231a6632cc6b86ff1395f7bf262;hp=d552a6844e990ff8e63e970b45526b6cbb0925d5;hb=db56efb04c4a1c260676e743481b8f67b36e60ed;hpb=87181c0cb019c0a1a0a0ce2a4592795f87b5957c diff --git a/app/src/main/java/net/ktnx/mobileledger/json/ApiNotSupportedException.java b/app/src/main/java/net/ktnx/mobileledger/json/ApiNotSupportedException.java index d552a684..7bf84514 100644 --- a/app/src/main/java/net/ktnx/mobileledger/json/ApiNotSupportedException.java +++ b/app/src/main/java/net/ktnx/mobileledger/json/ApiNotSupportedException.java @@ -17,4 +17,22 @@ 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); + } +}