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

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

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

import net.jqwik.api.*;

public class PredecessorNotSubmittedException extends JqwikException {

	public PredecessorNotSubmittedException(ExecutionTask task, ExecutionTask predecessor) {
		super(String.format("Predecessor [%s] must be submitted before [%s] can be run.", predecessor.toString(), task.toString()));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy