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 a transformation uses the same name for
20: * a formal argument as for a local variable.
21: *
22: * @author Jens-S. Vöckler
23: * @author Yong Zhao
24: * @version $Revision: 50 $
25: *
26: * @see org.griphyn.vdl.classes.Transformation
27: * @see org.griphyn.vdl.classes.Local
28: */
29: public class DuplicateIdentifier extends java.lang.RuntimeException {
30: /**
31: * Constructs a <code>DuplicateIdentifier</code> with no
32: * detail message.
33: */
34: public DuplicateIdentifier() {
35: super ();
36: }
37:
38: /**
39: * Constructs a <code>DuplicateIdentifier</code> with the
40: * specified detailed message.
41: *
42: * @param s is the detailled message.
43: */
44: public DuplicateIdentifier(String s) {
45: super(s);
46: }
47: }
|