fit.decorator.exceptions.InvalidInputException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
The newest version!
package fit.decorator.exceptions;
public class InvalidInputException extends Exception {
private static final long serialVersionUID = -2094492713230751207L;
public InvalidInputException(String message) {
super(message);
}
}