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.router;
17:
18: /**
19: * This exception is thrown if the matching between a Derivation and the
20: * Transformation it refers to fails. A method is not required to
21: * declare in its throws clause any subclasses of RuntimeException that
22: * might be thrown during the execution of the method but not caught.
23: *
24: * @author Jens-S. Vöckler
25: * @author Yong Zhao
26: * @version $Revision: 50 $
27: *
28: * @see org.griphyn.vdl.classes.Derivation
29: * @see org.griphyn.vdl.classes.Transformation
30: */
31: public class TransformationNotFoundException extends
32: java.lang.RuntimeException {
33: /**
34: * Constructs a <code>TransformationNotFoundException</code> with no
35: * detail message.
36: */
37: public TransformationNotFoundException() {
38: super ();
39: }
40:
41: /**
42: * Constructs a <code>TransformationNotFoundException</code> with the
43: * specified detailed message.
44: *
45: * @param s is the detailled message.
46: */
47: public TransformationNotFoundException(String s) {
48: super(s);
49: }
50: }
|