de.hilling.junit.cdi.CdiTestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdi-test-core Show documentation
Show all versions of cdi-test-core Show documentation
implementation of cdi-test
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