Skip to content

Commit f7bb00c

Browse files
committed
added getter for the JSON string to ParseException
1 parent 120ba0f commit f7bb00c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main/java/io/api/etherscan/error/ParseException.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,8 @@ public ParseException(String message, Throwable cause, String json) {
1313
super(message, cause);
1414
this.json = json;
1515
}
16+
17+
public String getJson() {
18+
return json;
19+
}
1620
}

0 commit comments

Comments
 (0)