javassist.build.JavassistBuildException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javassist-build-plugin-api Show documentation
Show all versions of javassist-build-plugin-api Show documentation
A common interface for class transformers, java (or groovy) entities that can manipulate classes during build processes, right after javac compiled them.
The newest version!
package javassist.build;
/**
* A generic build exception when applying a transformer.
* Wraps the real cause of the (probably javassist) root exception.
* @author SNI
*/
@SuppressWarnings("serial")
public class JavassistBuildException extends Exception {
public JavassistBuildException() {
super();
}
public JavassistBuildException(String message, Throwable throwable) {
super(message, throwable);
}
public JavassistBuildException(String message) {
super(message);
}
public JavassistBuildException(Throwable throwable) {
super(throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy