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

net.jqwik.engine.execution.pipeline.DuplicateExecutionTaskException Maven / Gradle / Ivy

The newest version!
package net.jqwik.engine.execution.pipeline;

import net.jqwik.api.*;

public class DuplicateExecutionTaskException extends JqwikException {
	public DuplicateExecutionTaskException(ExecutionTask task) {
		super(String.format("Task [%s] has already been submitted.", task.toString()));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy