0
|
1 package edu.unc.genomics;
|
|
2
|
|
3 /**
|
|
4 * Exception thrown if attempting to perform an invalid action with a Job
|
|
5 *
|
|
6 * @author timpalpant
|
|
7 *
|
|
8 */
|
|
9 public class JobException extends Exception {
|
|
10
|
|
11 private static final long serialVersionUID = -831504993593959450L;
|
|
12
|
|
13 /**
|
|
14 *
|
|
15 */
|
|
16 public JobException() {
|
|
17 // TODO Auto-generated constructor stub
|
|
18 }
|
|
19
|
|
20 /**
|
|
21 * @param message
|
|
22 */
|
|
23 public JobException(String message) {
|
|
24 super(message);
|
|
25 // TODO Auto-generated constructor stub
|
|
26 }
|
|
27
|
|
28 /**
|
|
29 * @param cause
|
|
30 */
|
|
31 public JobException(Throwable cause) {
|
|
32 super(cause);
|
|
33 // TODO Auto-generated constructor stub
|
|
34 }
|
|
35
|
|
36 /**
|
|
37 * @param message
|
|
38 * @param cause
|
|
39 */
|
|
40 public JobException(String message, Throwable cause) {
|
|
41 super(message, cause);
|
|
42 // TODO Auto-generated constructor stub
|
|
43 }
|
|
44
|
|
45 /**
|
|
46 * @param message
|
|
47 * @param cause
|
|
48 * @param enableSuppression
|
|
49 * @param writableStackTrace
|
|
50 */
|
|
51 public JobException(String message, Throwable cause,
|
|
52 boolean enableSuppression, boolean writableStackTrace) {
|
|
53 super(message, cause, enableSuppression, writableStackTrace);
|
|
54 // TODO Auto-generated constructor stub
|
|
55 }
|
|
56
|
|
57 }
|