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

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

There is a newer version: 3.23.0
Show newest version
package io.neow3j.transaction.exceptions;

import io.neow3j.transaction.Signer;

/**
 * Is thrown in case of invalid configurations when building a {@link Signer}.
 */
public class SignerConfigurationException extends RuntimeException {

    public SignerConfigurationException() {
        super();
    }

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy