package jalview.ws.rest; /** * exception thrown if there is no data available to construct a valid input for a particular validInput.InputType and RestJob * @author JimP * */ public class NoValidInputDataException extends Exception { public NoValidInputDataException(String string) { super(string); } public NoValidInputDataException(String string, Exception ex) { super(string,ex); } }