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

io.neow3j.protocol.exceptions.RpcResponseErrorException Maven / Gradle / Ivy

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