01: /*=============================================================================
02: * Copyright Texas Instruments 2004. 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: * @version 1
30: */
31: public class OUnsupportedOperationException extends OException {
32: /**
33: * The type object for an instance of <i>UnsupportedOperationException</i>.
34: */
35: public final static Value TYPE = BuiltinType
36: .makeBuiltinType("oscript.data.OUnsupportedOperationException");
37: public final static String PARENT_TYPE_NAME = "oscript.data.OException";
38: public final static String TYPE_NAME = "UnsupportedOperationException";
39: public final static String[] MEMBER_NAMES = new String[] {};
40:
41: /*=======================================================================*/
42: /**
43: * Class Constructor.
44: *
45: * @param str a string, error string
46: */
47: public OUnsupportedOperationException(String str) {
48: super (TYPE, str);
49: }
50:
51: /*=======================================================================*/
52: /**
53: * Class Constructor. This is the constructor that is called via a
54: * <code>BuiltinType</code> instance.
55: *
56: * @param args arguments to this constructor
57: * @throws PackagedScriptObjectException(Exception) if wrong number of args
58: */
59: public OUnsupportedOperationException(oscript.util.MemberTable args) {
60: this (getArg0(args));
61: }
62: }
63:
64: /*
65: * Local Variables:
66: * tab-width: 2
67: * indent-tabs-mode: nil
68: * mode: java
69: * c-indentation-style: java
70: * c-basic-offset: 2
71: * eval: (c-set-offset 'substatement-open '0)
72: * eval: (c-set-offset 'case-label '+)
73: * eval: (c-set-offset 'inclass '+)
74: * eval: (c-set-offset 'inline-open '0)
75: * End:
76: */
|