i.AvmThrowable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaee-rt Show documentation
Show all versions of javaee-rt Show documentation
An Execution Environment for Java SCOREs
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