JAL-3878 Create abstract base classes for non-interactive tasks
[jalview.git] / src / jalview / ws2 / actions / ServiceInputInvalidException.java
1 package jalview.ws2.actions;
2
3 /**
4  * An exception thrown to indicate that the input is invalid and the service
5  * cannot be started.
6  *  
7  * @author mmwarowny
8  *
9  */
10 public class ServiceInputInvalidException extends Exception
11 {
12   /**
13    * 
14    */
15   private static final long serialVersionUID = 174066679057181584L;
16
17   public ServiceInputInvalidException(String message)
18   {
19     super(message);
20   }
21   
22   public ServiceInputInvalidException(Throwable cause)
23   {
24     super(cause);
25   }
26   
27   public ServiceInputInvalidException(String message, Throwable cause)
28   {
29     super(message, cause);
30   }
31 }