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

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

There is a newer version: 2.1.0
Show newest version
package io.api.etherscan.error;

/**
 * ! NO DESCRIPTION !
 *
 * @author GoodforGod
 * @since 30.10.2018
 */
public class ApiException extends RuntimeException {

    public ApiException(String message) {
        super(message);
    }

    public ApiException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy