
io.probedock.junitee.dependency.DependencyInjectionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junitee-data-utils Show documentation
Show all versions of junitee-data-utils Show documentation
JUnit data utilities to manage data in a database when doing tests like API tests against an
application in application server.
The newest version!
package io.probedock.junitee.dependency;
/**
* Exception in case of injection failures
*
* @author Laurent Prevost
*/
public class DependencyInjectionException extends Exception {
public DependencyInjectionException(String message) {
super(message);
}
public DependencyInjectionException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy