![JAR search and dependency download from the Maven repository](/logo.png)
io.neow3j.transaction.exceptions.TransactionConfigurationException Maven / Gradle / Ivy
package io.neow3j.transaction.exceptions;
/**
* Is thrown in case of invalid configurations when building a {@link
* io.neow3j.transaction.Transaction}.
*/
public class TransactionConfigurationException extends RuntimeException {
public TransactionConfigurationException() {
super();
}
public TransactionConfigurationException(String message) {
super(message);
}
public TransactionConfigurationException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy