1
2
3
4
5
6
7
8
9
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 }