You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when there is an JSONException, a "fake" JSONObject is created. That object does not contain an error code.
later when int errCode = Integer.parseInt(responseJSON.optString(ERROR_CODE)); is executed an java.lang.NumberFormatException: For input string: "" exception is triggered.
The text was updated successfully, but these errors were encountered:
In this part of the code
contentstack-java/src/main/java/com/contentstack/sdk/CSHttpConnection.java
Lines 298 to 308 in 5e09340
when there is an
JSONException
, a "fake"JSONObject
is created. That object does not contain an error code.later when
int errCode = Integer.parseInt(responseJSON.optString(ERROR_CODE));
is executed anjava.lang.NumberFormatException: For input string: ""
exception is triggered.The text was updated successfully, but these errors were encountered: