org.requirementsascode.exception.InfiniteRepetition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of requirementsascodecore Show documentation
Show all versions of requirementsascodecore Show documentation
Enables you to define and run executable use case specifications, in your code.
package org.requirementsascode.exception;
import org.requirementsascode.Step;
/**
* Exception that is thrown when internally, a StackOverflowException occurs.
* The likely cause is that a condition is always true.
*
* @author b_muth
*
*/
public class InfiniteRepetition extends RuntimeException{
private static final long serialVersionUID = 5249803987787358917L;
public InfiniteRepetition(Step step) {
super("Possible cause: " + step.getName() + " has an always true condition.");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy