berlin.yuna.survey.model.exception.FlowImportException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of surveys Show documentation
Show all versions of surveys Show documentation
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.
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);
}
}