All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.api.etherscan.error.ParseException Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
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