1
2
3
4
5
6
7
8
9
10
11
12
13
14 package org.astrogrid.applications.description.exception;
15
16 import org.astrogrid.applications.CeaException;
17
18 /***
19 * Cannot find the iterface description for an application.
20 * @author Paul Harrison (pah@jb.man.ac.uk)
21 * @version $Name: HEAD $
22 * @since iteration4
23 */
24 public class InterfaceDescriptionNotFoundException extends CeaException {
25
26
27 /***
28 * @param message
29 */
30 public InterfaceDescriptionNotFoundException(String message) {
31 super(message);
32
33 }
34
35 /***
36 * @param message
37 * @param cause
38 */
39 public InterfaceDescriptionNotFoundException(
40 String message,
41 Throwable cause) {
42 super(message, cause);
43 }
44
45 }