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

i.AvmThrowable Maven / Gradle / Ivy

There is a newer version: 0.9.6
Show newest version
package i;

/**
 * The root of the exception/error hierarchy in AVM. The DApp should not be able
 * to catch any of the exceptions or errors which extend from this class.
 */
public class AvmThrowable extends RuntimeException {
    private static final long serialVersionUID = 1L;

    protected AvmThrowable() {
        super();
    }

    protected AvmThrowable(String message) {
        super(message);
    }

    protected AvmThrowable(String message, Throwable cause) {
        super(message, cause);
    }

    protected AvmThrowable(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy