org.fisco.bcos.web3j.tx.exceptions.ContractCallException Maven / Gradle / Ivy
package org.fisco.bcos.web3j.tx.exceptions;
/** Exception resulting from issues calling methods on Smart Contracts. */
public class ContractCallException extends RuntimeException {
public ContractCallException(String message) {
super(message);
}
public ContractCallException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy