org.multiverse.instrumentation.CompileException Maven / Gradle / Ivy
package org.multiverse.instrumentation;
/**
* A {@link RuntimeException} that is thrown when the postprocessing of a Clazz fails.
*
* @author Peter Veentjer
*/
public class CompileException extends RuntimeException {
public CompileException() {
}
public CompileException(String message) {
super(message);
}
public CompileException(String message, Throwable cause) {
super(message, cause);
}
public CompileException(Throwable cause) {
super(cause);
}
}