View Javadoc

1   /*
2    * $Id: MandatoryParameterNotPassedException.java,v 1.1 2004/08/28 07:17:34 pah Exp $
3    * 
4    * Created on 20-Aug-2004 by Paul Harrison (pah@jb.man.ac.uk)
5    * Copyright 2004 AstroGrid. All rights reserved.
6    *
7    * This software is published under the terms of the AstroGrid 
8    * Software License version 1.2, a copy of which has been included 
9    * with this distribution in the LICENSE.txt file.  
10   *
11   */ 
12  
13  package org.astrogrid.applications;
14  
15  /***
16   * Occurs when a mandatory parameter is not passed to an application for a particular interface.
17   * @author Paul Harrison (pah@jb.man.ac.uk) 20-Aug-2004
18   * @version $Name: HEAD $
19   * @since iteration6
20   */
21  public class MandatoryParameterNotPassedException extends CeaException {
22  
23      /***
24       * @param message
25       */
26      public MandatoryParameterNotPassedException(String message) {
27          super(message);
28      }
29  
30      /***
31       * @param message
32       * @param cause
33       */
34      public MandatoryParameterNotPassedException(String message, Throwable cause) {
35          super(message, cause);
36      }
37  
38  }