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

de.hilling.junit.cdi.CdiTestException Maven / Gradle / Ivy

The newest version!
package de.hilling.junit.cdi;

/**
 * Exception to mark unexpected errors during test run. Any occurence of this exception should
 * be due to an implementation error in cdi-test or an error in the test setup.
 */
public class CdiTestException extends RuntimeException {

    public CdiTestException(String message) {
        super(message);
    }

    public CdiTestException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy