![JAR search and dependency download from the Maven repository](/logo.png)
io.neow3j.protocol.exceptions.RpcResponseErrorException 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.protocol.exceptions;
import io.neow3j.protocol.core.Response.Error;
import static java.lang.String.format;
public class RpcResponseErrorException extends RuntimeException {
public RpcResponseErrorException(Error error) {
super(format("The Neo node responded with an error: %s", error));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy