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

io.neow3j.transaction.exceptions.TransactionConfigurationException Maven / Gradle / Ivy

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