emul/mini/src/main/java/java/lang/ClassFormatError.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 26 Jan 2013 08:47:05 +0100
changeset 592 5e13b1ac2886
parent 120 d739cdce3891
permissions -rw-r--r--
In order to support fields of the same name in subclasses we are now prefixing them with name of the class that defines them. To provide convenient way to access them from generated bytecode and also directly from JavaScript, there is a getter/setter function for each field. It starts with _ followed by the field name. If called with a parameter, it sets the field, with a parameter it just returns it.
jtulach@120
     1
/*
jtulach@120
     2
 * Copyright (c) 1994, 2008, Oracle and/or its affiliates. All rights reserved.
jtulach@120
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jtulach@120
     4
 *
jtulach@120
     5
 * This code is free software; you can redistribute it and/or modify it
jtulach@120
     6
 * under the terms of the GNU General Public License version 2 only, as
jtulach@120
     7
 * published by the Free Software Foundation.  Oracle designates this
jtulach@120
     8
 * particular file as subject to the "Classpath" exception as provided
jtulach@120
     9
 * by Oracle in the LICENSE file that accompanied this code.
jtulach@120
    10
 *
jtulach@120
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
jtulach@120
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jtulach@120
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
jtulach@120
    14
 * version 2 for more details (a copy is included in the LICENSE file that
jtulach@120
    15
 * accompanied this code).
jtulach@120
    16
 *
jtulach@120
    17
 * You should have received a copy of the GNU General Public License version
jtulach@120
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
jtulach@120
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jtulach@120
    20
 *
jtulach@120
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jtulach@120
    22
 * or visit www.oracle.com if you need additional information or have any
jtulach@120
    23
 * questions.
jtulach@120
    24
 */
jtulach@120
    25
jtulach@120
    26
package java.lang;
jtulach@120
    27
jtulach@120
    28
/**
jtulach@120
    29
 * Thrown when the Java Virtual Machine attempts to read a class
jtulach@120
    30
 * file and determines that the file is malformed or otherwise cannot
jtulach@120
    31
 * be interpreted as a class file.
jtulach@120
    32
 *
jtulach@120
    33
 * @author  unascribed
jtulach@120
    34
 * @since   JDK1.0
jtulach@120
    35
 */
jtulach@120
    36
public
jtulach@120
    37
class ClassFormatError extends LinkageError {
jtulach@120
    38
    private static final long serialVersionUID = -8420114879011949195L;
jtulach@120
    39
jtulach@120
    40
    /**
jtulach@120
    41
     * Constructs a <code>ClassFormatError</code> with no detail message.
jtulach@120
    42
     */
jtulach@120
    43
    public ClassFormatError() {
jtulach@120
    44
        super();
jtulach@120
    45
    }
jtulach@120
    46
jtulach@120
    47
    /**
jtulach@120
    48
     * Constructs a <code>ClassFormatError</code> with the specified
jtulach@120
    49
     * detail message.
jtulach@120
    50
     *
jtulach@120
    51
     * @param   s   the detail message.
jtulach@120
    52
     */
jtulach@120
    53
    public ClassFormatError(String s) {
jtulach@120
    54
        super(s);
jtulach@120
    55
    }
jtulach@120
    56
}