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

fm.pattern.cycle.config.CycleConfigurationException Maven / Gradle / Ivy

Go to download

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