View Javadoc

1   /*
2    * $Id: ParameterTypeNotDefinedException.java,v 1.2 2004/07/01 11:16:22 nw Exp $
3    * 
4    * Created on 28-Nov-2003 by Paul Harrison (pah@jb.man.ac.uk)
5    *
6    * Copyright 2003 AstroGrid. All rights reserved.
7    *
8    * This software is published under the terms of the AstroGrid 
9    * Software License version 1.2, a copy of which has been included 
10   * with this distribution in the LICENSE.txt file.  
11   *
12   */ 
13  
14  package org.astrogrid.applications.description.exception;
15  
16  import org.astrogrid.applications.CeaException;
17  
18  /***
19   * Thrown if an unknown parameter type is encountered when parsing a parameter definition file.
20   * @author Paul Harrison (pah@jb.man.ac.uk)
21   * @version $Name: HEAD $
22   * @since iteration4
23   */
24  public class ParameterTypeNotDefinedException extends CeaException {
25  
26  
27     /***
28      * @param type
29      */
30     public ParameterTypeNotDefinedException(String type) {
31        
32       super(type);
33     }
34     
35    
36  
37  }