1
2
3
4
5
6
7
8
9
10
11 package org.astrogrid.component;
12
13 /*** Exception thrown when something goes wrong with a component manager - usually during the instantiaion process.
14 * unchecked exception, becuase there's no point trying to catch it - if something goes wrong enough to throw this, thats it. log & die.
15 * @author Noel Winstanley nw@jb.man.ac.uk 07-Mar-2004
16 *
17 */
18 public class ComponentManagerException extends RuntimeException {
19 /*** Construct a new ComponentManagerException
20 *
21 */
22 public ComponentManagerException() {
23 super();
24 }
25 /*** Construct a new ComponentManagerException
26 * @param message
27 */
28 public ComponentManagerException(String message) {
29 super(message);
30 }
31 /*** Construct a new ComponentManagerException
32 * @param cause
33 */
34 public ComponentManagerException(Throwable cause) {
35 super(cause);
36 }
37 /*** Construct a new ComponentManagerException
38 * @param message
39 * @param cause
40 */
41 public ComponentManagerException(String message, Throwable cause) {
42 super(message, cause);
43 }
44 }
45
46
47
48
49
50
51
52
53
54
55
56
57
58