Next version of JABA
[jabaws.git] / datamodel / compbio / metadata / UnsupportedRuntimeException.java
1 /* Copyright (c) 2009 Peter Troshin\r
2  *  \r
3  *  JAva Bioinformatics Analysis Web Services (JABAWS) @version: 1.0    \r
4  * \r
5  *  This library is free software; you can redistribute it and/or modify it under the terms of the\r
6  *  Apache License version 2 as published by the Apache Software Foundation\r
7  * \r
8  *  This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without\r
9  *  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Apache \r
10  *  License for more details.\r
11  * \r
12  *  A copy of the license is in apache_license.txt. It is also available here:\r
13  * @see: http://www.apache.org/licenses/LICENSE-2.0.txt\r
14  * \r
15  * Any republication or derived work distributed in source code form\r
16  * must include this copyright and license notice.\r
17  */\r
18 \r
19 package compbio.metadata;\r
20 \r
21 import javax.xml.bind.annotation.XmlAccessType;\r
22 import javax.xml.bind.annotation.XmlAccessorType;\r
23 \r
24 /**\r
25  * Indicates that the server could not execute native executables. e.g. If Mafft\r
26  * (unix executable) is asked to be run on Windows. In context of JWS2 this\r
27  * exception indicates that the service is deployed but is not able to run.\r
28  * \r
29  * @author pvtroshin\r
30  * \r
31  *         Date February 2010\r
32  */\r
33 @XmlAccessorType(XmlAccessType.FIELD)\r
34 public class UnsupportedRuntimeException extends JobSubmissionException {\r
35 \r
36     public UnsupportedRuntimeException(String message) {\r
37         super(message);\r
38     }\r
39 \r
40     public UnsupportedRuntimeException(Throwable cause) {\r
41         super(cause);\r
42     }\r
43 \r
44     /**\r
45          * \r
46          */\r
47     private static final long serialVersionUID = -86624836785110293L;\r
48 \r
49 }\r