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

Disabled: no SafeJ information.

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
InvokeDynamicBootstrapError()
          Constructs a InvokeDynamicBootstrapError with no detail message.
InvokeDynamicBootstrapError(String s)
          Constructs a InvokeDynamicBootstrapError with the specified detail message.
InvokeDynamicBootstrapError(String s, Throwable cause)
          Constructs a InvokeDynamicBootstrapError with the specified detail message and cause.
 
Method Summary
 
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()
Class is disabled.

Constructs a InvokeDynamicBootstrapError with no detail message.


InvokeDynamicBootstrapError

public InvokeDynamicBootstrapError(String s)
Class is disabled.

Constructs a InvokeDynamicBootstrapError with the specified detail message.

Parameters:
s - the detail message.

InvokeDynamicBootstrapError

public InvokeDynamicBootstrapError(String s,
                                   Throwable cause)
Class is disabled.

Constructs a InvokeDynamicBootstrapError with the specified detail message and cause.

Parameters:
s - the detail message.
cause - the cause.