01: /*=============================================================================
02: * Copyright Texas Instruments 2000. All Rights Reserved.
03: *
04: * This program is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License as published by the Free Software Foundation; either
07: * version 2 of the License, or (at your option) any later version.
08: *
09: * This program is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: * Lesser General Public License for more details.
13: *
14: * You should have received a copy of the GNU Lesser General Public
15: * License along with this library; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17: *
18: * $ProjectHeader: OSCRIPT 0.155 Fri, 20 Dec 2002 18:34:22 -0800 rclark $
19: */
20:
21: package oscript.data;
22:
23: import oscript.exceptions.*;
24:
25: /**
26: * At some point, we could perhaps make this a script type...
27: *
28: * @author Rob Clark (rob@ti.com)
29: * <!--$Format: " * @version $Revision$"$-->
30: * @version 1.5
31: */
32: public class ONoSuchMemberException extends OException {
33: /**
34: * The type object for an instance of <i>NoSuchMemberException</i>.
35: */
36: public final static Value TYPE = BuiltinType
37: .makeBuiltinType("oscript.data.ONoSuchMemberException");
38: public final static String PARENT_TYPE_NAME = "oscript.data.OException";
39: public final static String TYPE_NAME = "NoSuchMemberException";
40: public final static String[] MEMBER_NAMES = new String[] {};
41:
42: /*=======================================================================*/
43: /**
44: * Class Constructor.
45: *
46: * @param type the type of the object that does not have the specified member
47: * @param name name of the missing member
48: */
49: public ONoSuchMemberException(Value type, String name) {
50: this ("no such member \"" + name + "\" in "
51: + type.castToString());
52: }
53:
54: /*=======================================================================*/
55: /**
56: * Class Constructor.
57: *
58: * @param str a string, name of the missing member
59: */
60: public ONoSuchMemberException(String str) {
61: super (TYPE, "no such member: " + str);
62: }
63:
64: /*=======================================================================*/
65: /**
66: * Class Constructor. This is the constructor that is called via a
67: * <code>BuiltinType</code> instance.
68: *
69: * @param args arguments to this constructor
70: * @throws PackagedScriptObjectException(Exception) if wrong number of args
71: */
72: public ONoSuchMemberException(oscript.util.MemberTable args) {
73: this (getArg0(args));
74: }
75: }
76:
77: /*
78: * Local Variables:
79: * tab-width: 2
80: * indent-tabs-mode: nil
81: * mode: java
82: * c-indentation-style: java
83: * c-basic-offset: 2
84: * eval: (c-set-offset 'substatement-open '0)
85: * eval: (c-set-offset 'case-label '+)
86: * eval: (c-set-offset 'inclass '+)
87: * eval: (c-set-offset 'inline-open '0)
88: * End:
89: */
|