rt/emul/compact/src/main/java/java/lang/invoke/WrongMethodTypeException.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 09 Aug 2014 11:11:13 +0200
branchjdk8-b132
changeset 1646 c880a8a8803b
permissions -rw-r--r--
Batch of classes necessary to implement invoke dynamic interfaces. Taken from JDK8 build 132
jaroslav@1646
     1
/*
jaroslav@1646
     2
 * Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved.
jaroslav@1646
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jaroslav@1646
     4
 *
jaroslav@1646
     5
 * This code is free software; you can redistribute it and/or modify it
jaroslav@1646
     6
 * under the terms of the GNU General Public License version 2 only, as
jaroslav@1646
     7
 * published by the Free Software Foundation.  Oracle designates this
jaroslav@1646
     8
 * particular file as subject to the "Classpath" exception as provided
jaroslav@1646
     9
 * by Oracle in the LICENSE file that accompanied this code.
jaroslav@1646
    10
 *
jaroslav@1646
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
jaroslav@1646
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jaroslav@1646
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
jaroslav@1646
    14
 * version 2 for more details (a copy is included in the LICENSE file that
jaroslav@1646
    15
 * accompanied this code).
jaroslav@1646
    16
 *
jaroslav@1646
    17
 * You should have received a copy of the GNU General Public License version
jaroslav@1646
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
jaroslav@1646
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jaroslav@1646
    20
 *
jaroslav@1646
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jaroslav@1646
    22
 * or visit www.oracle.com if you need additional information or have any
jaroslav@1646
    23
 * questions.
jaroslav@1646
    24
 */
jaroslav@1646
    25
jaroslav@1646
    26
package java.lang.invoke;
jaroslav@1646
    27
jaroslav@1646
    28
/**
jaroslav@1646
    29
 * Thrown to indicate that code has attempted to call a method handle
jaroslav@1646
    30
 * via the wrong method type.  As with the bytecode representation of
jaroslav@1646
    31
 * normal Java method calls, method handle calls are strongly typed
jaroslav@1646
    32
 * to a specific type descriptor associated with a call site.
jaroslav@1646
    33
 * <p>
jaroslav@1646
    34
 * This exception may also be thrown when two method handles are
jaroslav@1646
    35
 * composed, and the system detects that their types cannot be
jaroslav@1646
    36
 * matched up correctly.  This amounts to an early evaluation
jaroslav@1646
    37
 * of the type mismatch, at method handle construction time,
jaroslav@1646
    38
 * instead of when the mismatched method handle is called.
jaroslav@1646
    39
 *
jaroslav@1646
    40
 * @author John Rose, JSR 292 EG
jaroslav@1646
    41
 * @since 1.7
jaroslav@1646
    42
 */
jaroslav@1646
    43
public class WrongMethodTypeException extends RuntimeException {
jaroslav@1646
    44
    private static final long serialVersionUID = 292L;
jaroslav@1646
    45
jaroslav@1646
    46
    /**
jaroslav@1646
    47
     * Constructs a {@code WrongMethodTypeException} with no detail message.
jaroslav@1646
    48
     */
jaroslav@1646
    49
    public WrongMethodTypeException() {
jaroslav@1646
    50
        super();
jaroslav@1646
    51
    }
jaroslav@1646
    52
jaroslav@1646
    53
    /**
jaroslav@1646
    54
     * Constructs a {@code WrongMethodTypeException} with the specified
jaroslav@1646
    55
     * detail message.
jaroslav@1646
    56
     *
jaroslav@1646
    57
     * @param s the detail message.
jaroslav@1646
    58
     */
jaroslav@1646
    59
    public WrongMethodTypeException(String s) {
jaroslav@1646
    60
        super(s);
jaroslav@1646
    61
    }
jaroslav@1646
    62
jaroslav@1646
    63
    /**
jaroslav@1646
    64
     * Constructs a {@code WrongMethodTypeException} with the specified
jaroslav@1646
    65
     * detail message and cause.
jaroslav@1646
    66
     *
jaroslav@1646
    67
     * @param s the detail message.
jaroslav@1646
    68
     * @param cause the cause of the exception, or null.
jaroslav@1646
    69
     */
jaroslav@1646
    70
    //FIXME: make this public in MR1
jaroslav@1646
    71
    /*non-public*/ WrongMethodTypeException(String s, Throwable cause) {
jaroslav@1646
    72
        super(s, cause);
jaroslav@1646
    73
    }
jaroslav@1646
    74
jaroslav@1646
    75
    /**
jaroslav@1646
    76
     * Constructs a {@code WrongMethodTypeException} with the specified
jaroslav@1646
    77
     * cause.
jaroslav@1646
    78
     *
jaroslav@1646
    79
     * @param cause the cause of the exception, or null.
jaroslav@1646
    80
     */
jaroslav@1646
    81
    //FIXME: make this public in MR1
jaroslav@1646
    82
    /*non-public*/ WrongMethodTypeException(Throwable cause) {
jaroslav@1646
    83
        super(cause);
jaroslav@1646
    84
    }
jaroslav@1646
    85
}