We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aad1af4 commit 00c3beaCopy full SHA for 00c3bea
1 file changed
src/main/java/net/jacobpeterson/alpaca/rest/AlpacaClientException.java
@@ -3,26 +3,20 @@
3
import com.google.gson.JsonElement;
4
import com.google.gson.JsonObject;
5
import com.google.gson.JsonParser;
6
-
7
-import javax.annotation.Nullable;
8
9
import okhttp3.Response;
10
import okhttp3.ResponseBody;
11
+import javax.annotation.Nullable;
+
12
public class AlpacaClientException extends Exception {
13
14
private static final String CODE_KEY = "code";
15
private static final String MESSAGE_KEY = "message";
16
17
- @Nullable
18
private String responseBody;
19
20
private Integer responseStatusCode;
21
22
private String responseStatusMessage;
23
24
private Integer apiResponseCode;
25
26
private String apiResponseMessage;
27
28
/**
0 commit comments