1/*
2 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.  Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26package jdk.nashorn.internal.objects;
27
28import static jdk.nashorn.internal.runtime.ScriptRuntime.UNDEFINED;
29
30import jdk.nashorn.internal.objects.annotations.Attribute;
31import jdk.nashorn.internal.objects.annotations.Constructor;
32import jdk.nashorn.internal.objects.annotations.Property;
33import jdk.nashorn.internal.objects.annotations.ScriptClass;
34import jdk.nashorn.internal.objects.annotations.Where;
35import jdk.nashorn.internal.runtime.JSType;
36import jdk.nashorn.internal.runtime.PropertyMap;
37import jdk.nashorn.internal.runtime.ScriptObject;
38
39/**
40 * ECMA 15.11.6.6 URIError
41 */
42@ScriptClass("Error")
43public final class NativeURIError extends ScriptObject {
44
45    /** message property in instance */
46    @Property(name = NativeError.MESSAGE, attributes = Attribute.NOT_ENUMERABLE)
47    public Object instMessage;
48
49    /** error name property */
50    @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
51    public Object name;
52
53    /** ECMA 15.1.1.1 message property */
54    @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
55    public Object message;
56
57    /** Nashorn extension: underlying exception */
58    @Property(attributes = Attribute.NOT_ENUMERABLE)
59    public Object nashornException;
60
61    // initialized by nasgen
62    private static PropertyMap $nasgenmap$;
63
64    @SuppressWarnings("LeakingThisInConstructor")
65    NativeURIError(final Object msg, final Global global) {
66        super(global.getURIErrorPrototype(), $nasgenmap$);
67        if (msg != UNDEFINED) {
68            this.instMessage = JSType.toString(msg);
69        } else {
70            this.delete(NativeError.MESSAGE, false);
71        }
72        NativeError.initException(this);
73    }
74
75    private NativeURIError(final Object msg) {
76        this(msg, Global.instance());
77    }
78
79    @Override
80    public String getClassName() {
81        return "Error";
82    }
83
84    /**
85     * ECMA 15.11.6.6 URIError
86     *
87     * Constructor
88     *
89     * @param newObj was this error instantiated with the new operator
90     * @param self   self reference
91     * @param msg    error message
92     *
93     * @return new URIError
94     */
95    @Constructor(name = "URIError")
96    public static NativeURIError constructor(final boolean newObj, final Object self, final Object msg) {
97        return new NativeURIError(msg);
98    }
99}
100