![JAR search and dependency download from the Maven repository](/logo.png)
io.neow3j.transaction.exceptions.SignerConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
neow3j: Java/Kotlin/Android Development Toolkit for the Neo Blockchain
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