jaroslav@1649: /* jaroslav@1649: * Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved. jaroslav@1649: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jaroslav@1649: * jaroslav@1649: * This code is free software; you can redistribute it and/or modify it jaroslav@1649: * under the terms of the GNU General Public License version 2 only, as jaroslav@1649: * published by the Free Software Foundation. Oracle designates this jaroslav@1649: * particular file as subject to the "Classpath" exception as provided jaroslav@1649: * by Oracle in the LICENSE file that accompanied this code. jaroslav@1649: * jaroslav@1649: * This code is distributed in the hope that it will be useful, but WITHOUT jaroslav@1649: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jaroslav@1649: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jaroslav@1649: * version 2 for more details (a copy is included in the LICENSE file that jaroslav@1649: * accompanied this code). jaroslav@1649: * jaroslav@1649: * You should have received a copy of the GNU General Public License version jaroslav@1649: * 2 along with this work; if not, write to the Free Software Foundation, jaroslav@1649: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jaroslav@1649: * jaroslav@1649: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jaroslav@1649: * or visit www.oracle.com if you need additional information or have any jaroslav@1649: * questions. jaroslav@1649: */ jaroslav@1649: jaroslav@1649: package java.lang; jaroslav@1649: jaroslav@1649: /** jaroslav@1649: * Thrown to indicate that an {@code invokedynamic} instruction has jaroslav@1649: * failed to find its bootstrap method, jaroslav@1649: * or the bootstrap method has failed to provide a jaroslav@1649: * {@linkplain java.lang.invoke.CallSite call site} with a {@linkplain java.lang.invoke.CallSite#getTarget target} jaroslav@1649: * of the correct {@linkplain java.lang.invoke.MethodHandle#type method type}. jaroslav@1649: * jaroslav@1649: * @author John Rose, JSR 292 EG jaroslav@1649: * @since 1.7 jaroslav@1649: */ jaroslav@1649: public class BootstrapMethodError extends LinkageError { jaroslav@1649: private static final long serialVersionUID = 292L; jaroslav@1649: jaroslav@1649: /** jaroslav@1649: * Constructs a {@code BootstrapMethodError} with no detail message. jaroslav@1649: */ jaroslav@1649: public BootstrapMethodError() { jaroslav@1649: super(); jaroslav@1649: } jaroslav@1649: jaroslav@1649: /** jaroslav@1649: * Constructs a {@code BootstrapMethodError} with the specified jaroslav@1649: * detail message. jaroslav@1649: * jaroslav@1649: * @param s the detail message. jaroslav@1649: */ jaroslav@1649: public BootstrapMethodError(String s) { jaroslav@1649: super(s); jaroslav@1649: } jaroslav@1649: jaroslav@1649: /** jaroslav@1649: * Constructs a {@code BootstrapMethodError} with the specified jaroslav@1649: * detail message and cause. jaroslav@1649: * jaroslav@1649: * @param s the detail message. jaroslav@1649: * @param cause the cause, may be {@code null}. jaroslav@1649: */ jaroslav@1649: public BootstrapMethodError(String s, Throwable cause) { jaroslav@1649: super(s, cause); jaroslav@1649: } jaroslav@1649: jaroslav@1649: /** jaroslav@1649: * Constructs a {@code BootstrapMethodError} with the specified jaroslav@1649: * cause. jaroslav@1649: * jaroslav@1649: * @param cause the cause, may be {@code null}. jaroslav@1649: */ jaroslav@1649: public BootstrapMethodError(Throwable cause) { jaroslav@1649: // cf. Throwable(Throwable cause) constructor. jaroslav@1649: super(cause == null ? null : cause.toString()); jaroslav@1649: initCause(cause); jaroslav@1649: } jaroslav@1649: }