1
2
3
4
5
6
7
8
9
10
11
12
13
14 package org.astrogrid.applications;
15
16 /***
17 * The base class for exceptions in CEA.
18 * @author Paul Harrison (pah@jb.man.ac.uk) 17-Mar-2004
19 * @version $Name: HEAD $
20 * @since iteration5
21 */
22 public class CeaException extends Exception {
23
24 /***
25 * @param message
26 */
27 public CeaException(String message) {
28 super(message);
29 }
30
31 /***
32 * @param message
33 * @param cause
34 */
35 public CeaException(String message, Throwable cause) {
36 super(message, cause);
37 }
38
39 }