comparison src/edu/unc/genomics/CommandLineToolException.java @ 2:e16016635b2a

Uploaded
author timpalpant
date Mon, 13 Feb 2012 22:12:06 -0500
parents
children
comparison
equal deleted inserted replaced
1:a54db233ee3d 2:e16016635b2a
1 package edu.unc.genomics;
2
3 /**
4 * @author timpalpant
5 *
6 */
7 public class CommandLineToolException extends RuntimeException {
8
9 /**
10 *
11 */
12 private static final long serialVersionUID = 4740440799806133636L;
13
14 /**
15 *
16 */
17 public CommandLineToolException() {
18 // TODO Auto-generated constructor stub
19 }
20
21 /**
22 * @param message
23 */
24 public CommandLineToolException(String message) {
25 super(message);
26 // TODO Auto-generated constructor stub
27 }
28
29 /**
30 * @param cause
31 */
32 public CommandLineToolException(Throwable cause) {
33 super(cause);
34 // TODO Auto-generated constructor stub
35 }
36
37 /**
38 * @param message
39 * @param cause
40 */
41 public CommandLineToolException(String message, Throwable cause) {
42 super(message, cause);
43 // TODO Auto-generated constructor stub
44 }
45
46 /**
47 * @param message
48 * @param cause
49 * @param enableSuppression
50 * @param writableStackTrace
51 */
52 public CommandLineToolException(String message, Throwable cause,
53 boolean enableSuppression, boolean writableStackTrace) {
54 super(message, cause, enableSuppression, writableStackTrace);
55 // TODO Auto-generated constructor stub
56 }
57
58 }