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

spoon.reflect.path.CtPathException Maven / Gradle / Ivy

Go to download

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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy