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

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

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

public class InvocationFaultStateException extends RuntimeException {

    private static final String invocationFaultMessage =
            "The invocation resulted in a FAULT VM state. The VM exited due to the following exception: ";

    public InvocationFaultStateException(String exception) {
        super(invocationFaultMessage + exception);
    }

    public InvocationFaultStateException(String customMessage, String exception) {
        super(customMessage + " " + exception);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy