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

javassist.build.JavassistBuildException Maven / Gradle / Ivy

Go to download

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