01: /*
02: * This file or a portion of this file is licensed under the terms of
03: * the Globus Toolkit Public License, found in file ../GTPL, or at
04: * http://www.globus.org/toolkit/download/license.html. This notice must
05: * appear in redistributions of this file, with or without modification.
06: *
07: * Redistributions of this Software, with or without modification, must
08: * reproduce the GTPL in: (1) the Software, or (2) the Documentation or
09: * some other similar material which is provided with the Software (if
10: * any).
11: *
12: * Copyright 1999-2004 University of Chicago and The University of
13: * Southern California. All rights reserved.
14: */
15:
16: package org.griphyn.vdl.classes;
17:
18: /**
19: * This exception is thrown if the matching between a used bound
20: * variable and its argument list variable it refers to fails. A method
21: * is not required to declare in its throws clause any subclasses of
22: * RuntimeException that might be thrown during the execution of the
23: * method but not caught.
24: *
25: * @author Jens-S. Vöckler
26: * @author Yong Zhao
27: * @version $Revision: 50 $
28: *
29: * @see Derivation
30: * @see Transformation
31: */
32: public class UndeclaredVariableException extends
33: java.lang.RuntimeException {
34: /**
35: * Constructs a <code>UndeclaredVariableException</code> with no
36: * detail message.
37: */
38: public UndeclaredVariableException() {
39: super ();
40: }
41:
42: /**
43: * Constructs a <code>UndeclaredVariableException</code> with the
44: * specified detailed message.
45: *
46: * @param s is the detailled message.
47: */
48: public UndeclaredVariableException(String s) {
49: super(s);
50: }
51: }
|