io.api.etherscan.model.proxy.utility.ErrorProxyTO 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.model.proxy.utility;
/**
* ! NO DESCRIPTION !
*
* @author GoodforGod
* @since 03.11.2018
*/
public class ErrorProxyTO {
private String message;
private String code;
public String getMessage() {
return message;
}
public String getCode() {
return code;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy