
fm.pattern.cycle.config.CycleConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cycle Show documentation
Show all versions of cycle Show documentation
Cycle simplifies automated acceptance testing by transparently starting any number of microservices before a JUnit test run.
The newest version!
package fm.pattern.cycle.config;
public class CycleConfigurationException extends RuntimeException {
private static final long serialVersionUID = -8642926441803895231L;
public CycleConfigurationException(String message) {
super(message);
}
public CycleConfigurationException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy