com.tidal.wave.exceptions.IterationStopper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wave Show documentation
Show all versions of wave Show documentation
Automation Code Repository
package com.tidal.wave.exceptions;
public class IterationStopper extends Exception {
public IterationStopper(String message) {
super(message);
}
public IterationStopper(Throwable cause) {
super(cause);
}
public IterationStopper(String message, Throwable cause) {
super(message, cause);
}
}