rt/emul/mini/src/main/java/java/lang/IncompatibleClassChangeError.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 13 Sep 2014 18:33:05 +0200
changeset 1688 e709c530c227
parent 772 d382dacfd73f
parent 1652 8fb89a569621
permissions -rw-r--r--
Lambda's work OK in AOT mode. Defender methods work OK. Merging.
jaroslav@633
     1
/*
jaroslav@633
     2
 * Copyright (c) 1994, 2008, Oracle and/or its affiliates. All rights reserved.
jaroslav@633
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jaroslav@633
     4
 *
jaroslav@633
     5
 * This code is free software; you can redistribute it and/or modify it
jaroslav@633
     6
 * under the terms of the GNU General Public License version 2 only, as
jaroslav@633
     7
 * published by the Free Software Foundation.  Oracle designates this
jaroslav@633
     8
 * particular file as subject to the "Classpath" exception as provided
jaroslav@633
     9
 * by Oracle in the LICENSE file that accompanied this code.
jaroslav@633
    10
 *
jaroslav@633
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
jaroslav@633
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jaroslav@633
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
jaroslav@633
    14
 * version 2 for more details (a copy is included in the LICENSE file that
jaroslav@633
    15
 * accompanied this code).
jaroslav@633
    16
 *
jaroslav@633
    17
 * You should have received a copy of the GNU General Public License version
jaroslav@633
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
jaroslav@633
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jaroslav@633
    20
 *
jaroslav@633
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jaroslav@633
    22
 * or visit www.oracle.com if you need additional information or have any
jaroslav@633
    23
 * questions.
jaroslav@633
    24
 */
jaroslav@633
    25
jaroslav@633
    26
package java.lang;
jaroslav@633
    27
jaroslav@633
    28
/**
jaroslav@633
    29
 * Thrown when an incompatible class change has occurred to some class
jaroslav@633
    30
 * definition. The definition of some class, on which the currently
jaroslav@633
    31
 * executing method depends, has since changed.
jaroslav@633
    32
 *
jaroslav@633
    33
 * @author  unascribed
jaroslav@633
    34
 * @since   JDK1.0
jaroslav@633
    35
 */
jaroslav@633
    36
public
jaroslav@633
    37
class IncompatibleClassChangeError extends LinkageError {
jaroslav@633
    38
    private static final long serialVersionUID = -4914975503642802119L;
jaroslav@633
    39
jaroslav@633
    40
    /**
jaroslav@633
    41
     * Constructs an <code>IncompatibleClassChangeError</code> with no
jaroslav@633
    42
     * detail message.
jaroslav@633
    43
     */
jaroslav@633
    44
    public IncompatibleClassChangeError () {
jaroslav@633
    45
        super();
jaroslav@633
    46
    }
jaroslav@633
    47
jaroslav@633
    48
    /**
jaroslav@633
    49
     * Constructs an <code>IncompatibleClassChangeError</code> with the
jaroslav@633
    50
     * specified detail message.
jaroslav@633
    51
     *
jaroslav@633
    52
     * @param   s   the detail message.
jaroslav@633
    53
     */
jaroslav@633
    54
    public IncompatibleClassChangeError(String s) {
jaroslav@633
    55
        super(s);
jaroslav@633
    56
    }
jaroslav@633
    57
}