View Javadoc

1   /*$Id: ComponentManagerException.java,v 1.1 2004/05/04 11:00:12 nw Exp $
2    * Created on 07-Mar-2004
3    *
4    * Copyright (C) AstroGrid. All rights reserved.
5    *
6    * This software is published under the terms of the AstroGrid 
7    * Software License version 1.2, a copy of which has been included 
8    * with this distribution in the LICENSE.txt file.  
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  $Log: ComponentManagerException.java,v $
49  Revision 1.1  2004/05/04 11:00:12  nw
50  moved pico-container component stuff from jes into common, so it can be used in cea too
51  
52  Revision 1.2  2004/03/07 21:04:38  nw
53  merged in nww-itn05-pico - adds picocontainer
54  
55  Revision 1.1.2.1  2004/03/07 20:39:47  nw
56  reimplemented component-manager framework to use picocontainer
57   
58  */