com.tinkerpop.frames.UnhandledMethodException Maven / Gradle / Ivy
Go to download
Windup Frames is an extension of the upstream Frames project, with tools to ease debugging and integration within windup.
package com.tinkerpop.frames;
import com.tinkerpop.frames.annotations.AnnotationHandler;
import com.tinkerpop.frames.modules.MethodHandler;
/**
* Thrown if a method could not be handled because an appropriate
* {@link AnnotationHandler} or {@link MethodHandler} could not be found that
* responds to the method
*
* @author Bryn Cooke
*
*/
public class UnhandledMethodException extends RuntimeException {
public UnhandledMethodException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy