
io.api.etherscan.error.ParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-etherscan-api Show documentation
Show all versions of java-etherscan-api Show documentation
Library is a wrapper for EtherScan API.
package io.api.etherscan.error;
/**
* @author GoodforGod
* @since 29.10.2018
*/
public class ParseException extends ApiException {
private final String json;
public ParseException(String message, Throwable cause, String json) {
super(message, cause);
this.json = json;
}
public String getJson() {
return json;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy