com.tinkerpop.frames.modules.javahandler.JavaHandlerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of windup-frames Show documentation
Show all versions of windup-frames Show documentation
Windup Frames is an extension of the upstream Frames project, with tools to ease debugging and integration within windup.
package com.tinkerpop.frames.modules.javahandler;
public class JavaHandlerException extends RuntimeException {
public JavaHandlerException() {
}
public JavaHandlerException(String message) {
super(message);
}
public JavaHandlerException(Throwable cause) {
super(cause);
}
public JavaHandlerException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy