Next version of JABA
[jabaws.git] / datamodel / compbio / metadata / JobExecutionException.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 /**\r
22  * JobExecutionException is thrown wherever the results of the calculation\r
23  * cannot be obtained. For cluster execution it hides DrmaaException\r
24  * \r
25  * @author pvtroshin\r
26  * \r
27  *         Date October 2009\r
28  */\r
29 public class JobExecutionException extends Exception {\r
30 \r
31     /**\r
32      * Default stable serial for serialization\r
33      */\r
34     private static final long serialVersionUID = -5477751361755778769L;\r
35 \r
36     public JobExecutionException(String message) {\r
37         super(message);\r
38     }\r
39 \r
40     public JobExecutionException(Throwable cause) {\r
41         super(cause);\r
42     }\r
43 \r
44     public JobExecutionException(String message, Throwable cause) {\r
45         super(message, cause);\r
46     }\r
47 \r
48 }\r