public class BootstrapMethodError extends LinkageError
invokedynamic
指令未能找到其引导方法,或引导方法未能提供call site与target正确的method type 。
Constructor and Description |
---|
BootstrapMethodError()
构造一个没有详细消息的
BootstrapMethodError 。
|
BootstrapMethodError(String s)
构造具有
BootstrapMethodError 详细消息的BootstrapMethodError。
|
BootstrapMethodError(String s, Throwable cause)
构造一个
BootstrapMethodError 用指定的详细消息和原因。
|
BootstrapMethodError(Throwable cause)
构造一个
BootstrapMethodError 带指定原因。
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public BootstrapMethodError()
BootstrapMethodError
。
public BootstrapMethodError(String s)
BootstrapMethodError
详细消息的BootstrapMethodError。
s
- 详细信息。
public BootstrapMethodError(String s, Throwable cause)
BootstrapMethodError
用指定的详细消息和原因。
s
- 详细信息。
cause
- 原因,可能是
null
。
public BootstrapMethodError(Throwable cause)
BootstrapMethodError
带指定原因。
cause
- 原因,可能是
null
。