Please note that this documentation is not final and is subject to change.

Java™ Platform
Standard Ed. 7

DRAFT ea-b76

java.dyn
Class InvokeDynamicBootstrapError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by java.lang.LinkageError
              extended by java.dyn.InvokeDynamicBootstrapError
All Implemented Interfaces:
Serializable

public class InvokeDynamicBootstrapError
extends LinkageError

Thrown to indicate that an invokedynamic instruction has failed to find its bootstrap method, or the bootstrap method has failed to provide a call site with a non-null target.

The boostrap method must have been declared during a class's initialization by a call to Linkage.registerBootstrapMethod(java.lang.Class, java.dyn.MethodHandle).

See Also:
Serialized Form

Constructor Summary
Constructor and Description
InvokeDynamicBootstrapError()
          Constructs a InvokeDynamicBootstrapError with no detail message.
InvokeDynamicBootstrapError(String s)
          Constructs a InvokeDynamicBootstrapError with the specified detail message.
 
Method Summary
Modifier and Type Method and Description
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvokeDynamicBootstrapError

public InvokeDynamicBootstrapError()
Constructs a InvokeDynamicBootstrapError with no detail message.


InvokeDynamicBootstrapError

public InvokeDynamicBootstrapError(String s)
Constructs a InvokeDynamicBootstrapError with the specified detail message.

Parameters:
s - the detail message.

Java™ Platform
Standard Ed. 7

DRAFT ea-b76

Submit a bug or feature

Copyright 2009 Sun Microsystems, Inc. All Rights Reserved. Use is subject to license terms.