7accad13f188e6484bdd97e6ffccf9d1b2e07fad
[jalview.git] / src / jalview / ws / rest / NoValidInputDataException.java
1 package jalview.ws.rest;
2
3 /**
4  * exception thrown if there is no data available to construct a valid input for a particular validInput.InputType and RestJob
5  * @author JimP
6  *
7  */
8 public class NoValidInputDataException extends Exception
9 {
10
11   public NoValidInputDataException(String string)
12   {
13     super(string);
14   }
15
16   public NoValidInputDataException(String string, Exception ex)
17   {
18     super(string,ex);
19   }
20
21 }