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

berlin.yuna.survey.model.exception.FlowImportException Maven / Gradle / Ivy

Go to download

Survey is a plain java library to provide a base for surveys / questionnaires. It also provides a function to generate diagrams and to measure answer times.

There is a newer version: 0.1.103
Show newest version
package berlin.yuna.survey.model.exception;

@SuppressWarnings({"unused", "UnusedReturnValue"})
public class FlowImportException extends FlowRuntimeException {

    public FlowImportException(final String flow, final String label, final String message) {
        super(label, flow, message);
    }

    public FlowImportException(final String flow, final String label, final String message, final Throwable throwable) {
        super(label, flow, message, throwable);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy