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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy