rt/emul/mini/src/main/java/java/lang/NoSuchMethodException.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@1649
     1
/*
jaroslav@1649
     2
 * Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved.
jaroslav@1649
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jaroslav@1649
     4
 *
jaroslav@1649
     5
 * This code is free software; you can redistribute it and/or modify it
jaroslav@1649
     6
 * under the terms of the GNU General Public License version 2 only, as
jaroslav@1649
     7
 * published by the Free Software Foundation.  Oracle designates this
jaroslav@1649
     8
 * particular file as subject to the "Classpath" exception as provided
jaroslav@1649
     9
 * by Oracle in the LICENSE file that accompanied this code.
jaroslav@1649
    10
 *
jaroslav@1649
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
jaroslav@1649
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jaroslav@1649
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
jaroslav@1649
    14
 * version 2 for more details (a copy is included in the LICENSE file that
jaroslav@1649
    15
 * accompanied this code).
jaroslav@1649
    16
 *
jaroslav@1649
    17
 * You should have received a copy of the GNU General Public License version
jaroslav@1649
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
jaroslav@1649
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jaroslav@1649
    20
 *
jaroslav@1649
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jaroslav@1649
    22
 * or visit www.oracle.com if you need additional information or have any
jaroslav@1649
    23
 * questions.
jaroslav@1649
    24
 */
jaroslav@1649
    25
jaroslav@1649
    26
package java.lang;
jaroslav@1649
    27
jaroslav@1649
    28
/**
jaroslav@1649
    29
 * Thrown when a particular method cannot be found.
jaroslav@1649
    30
 *
jaroslav@1649
    31
 * @author     unascribed
jaroslav@1649
    32
 * @since      JDK1.0
jaroslav@1649
    33
 */
jaroslav@1649
    34
public
jaroslav@1649
    35
class NoSuchMethodException extends ReflectiveOperationException {
jaroslav@1649
    36
    private static final long serialVersionUID = 5034388446362600923L;
jaroslav@1649
    37
jaroslav@1649
    38
    /**
jaroslav@1649
    39
     * Constructs a <code>NoSuchMethodException</code> without a detail message.
jaroslav@1649
    40
     */
jaroslav@1649
    41
    public NoSuchMethodException() {
jaroslav@1649
    42
        super();
jaroslav@1649
    43
    }
jaroslav@1649
    44
jaroslav@1649
    45
    /**
jaroslav@1649
    46
     * Constructs a <code>NoSuchMethodException</code> with a detail message.
jaroslav@1649
    47
     *
jaroslav@1649
    48
     * @param      s   the detail message.
jaroslav@1649
    49
     */
jaroslav@1649
    50
    public NoSuchMethodException(String s) {
jaroslav@1649
    51
        super(s);
jaroslav@1649
    52
    }
jaroslav@1649
    53
}