View Javadoc

1   /*$Id: ParameterAdapterException.java,v 1.2 2004/07/01 11:16:22 nw Exp $
2    * Created on 16-Jun-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.applications.parameter;
12  
13  import org.astrogrid.applications.CeaException;
14  
15  /*** Some generic fault concerning parameter adapters
16   * @author Noel Winstanley nw@jb.man.ac.uk 16-Jun-2004
17   *
18   */
19  public class ParameterAdapterException extends CeaException {
20      /*** Construct a new ParameterAdapterException
21       * @param message
22       */
23      public ParameterAdapterException(String message) {
24          super(message);
25      }
26      /*** Construct a new ParameterAdapterException
27       * @param message
28       * @param cause
29       */
30      public ParameterAdapterException(String message, Throwable cause) {
31          super(message, cause);
32      }
33  }
34  
35  
36  /* 
37  $Log: ParameterAdapterException.java,v $
38  Revision 1.2  2004/07/01 11:16:22  nw
39  merged in branch
40  nww-itn06-componentization
41  
42  Revision 1.1.2.2  2004/07/01 01:42:46  nw
43  final version, before merge
44  
45  Revision 1.1.2.1  2004/06/17 09:21:23  nw
46  finished all major functionality additions to core
47   
48  */