spoon.reflect.path.CtPathException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spoon-core Show documentation
Show all versions of spoon-core Show documentation
Spoon is a tool for meta-programming, analysis and transformation of Java programs.
The newest version!
package spoon.reflect.path;
/**
* This exception is throw when there are errors during a CtPath building or evaluation.
*/
public class CtPathException extends Exception {
public CtPathException() {
}
public CtPathException(Throwable cause) {
super(cause);
}
public CtPathException(String message) {
super(message);
}
}