X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fjson%2FApiNotSupportedException.java;h=7bf84514544d4231a6632cc6b86ff1395f7bf262;hb=db56efb04c4a1c260676e743481b8f67b36e60ed;hp=d552a6844e990ff8e63e970b45526b6cbb0925d5;hpb=a87079ed41bdc3ad89fe8bd15dfba10e37b29b76;p=mobile-ledger-staging.git 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); + } +}