类 AnalyzerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
cn.taketoday.bytecode.tree.analysis.AnalyzerException
- 所有已实现的接口:
Serializable
An exception thrown if a problem occurs during the analysis of a method.
- 作者:
- Bing Ran, Eric Bruneton
- 另请参阅:
-
字段概要
字段 -
构造器概要
构造器构造器说明AnalyzerException(AbstractInsnNode insn, String message) Constructs a newAnalyzerException.AnalyzerException(AbstractInsnNode insn, String message, Object expected, Value actual) Constructs a newAnalyzerException.AnalyzerException(AbstractInsnNode insn, String message, Throwable cause) Constructs a newAnalyzerException. -
方法概要
-
字段详细资料
-
node
-
-
构造器详细资料
-
AnalyzerException
Constructs a newAnalyzerException.- 参数:
insn- the bytecode instruction where the analysis failed.message- the reason why the analysis failed.
-
AnalyzerException
Constructs a newAnalyzerException.- 参数:
insn- the bytecode instruction where the analysis failed.message- the reason why the analysis failed.cause- the cause of the failure.
-
AnalyzerException
Constructs a newAnalyzerException.- 参数:
insn- the bytecode instruction where the analysis failed.message- the reason why the analysis failed.expected- an expected value.actual- the actual value, different from the expected one.
-