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

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

package io.neow3j.protocol.exceptions;

import io.neow3j.protocol.core.Response.Error;

public class ErrorResponseException extends Exception {

    private Error error;

    public ErrorResponseException(Error error) {
        this.error = error;
    }

    public Error getError() {
        return error;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy