Package org.objectweb.asm.tree.analysis
Class AnalyzerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.objectweb.asm.tree.analysis.AnalyzerException
-
- All Implemented Interfaces:
java.io.Serializable
public class AnalyzerException extends java.lang.ExceptionAn exception thrown if a problem occurs during the analysis of a method.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description org.objectweb.asm.tree.AbstractInsnNodenodeThe bytecode instruction where the analysis failed.
-
Constructor Summary
Constructors Constructor Description AnalyzerException(org.objectweb.asm.tree.AbstractInsnNode insn, java.lang.String message)Constructs a newAnalyzerException.AnalyzerException(org.objectweb.asm.tree.AbstractInsnNode insn, java.lang.String message, java.lang.Object expected, Value actual)Constructs a newAnalyzerException.AnalyzerException(org.objectweb.asm.tree.AbstractInsnNode insn, java.lang.String message, java.lang.Throwable cause)Constructs a newAnalyzerException.
-
-
-
Constructor Detail
-
AnalyzerException
public AnalyzerException(org.objectweb.asm.tree.AbstractInsnNode insn, java.lang.String message)Constructs a newAnalyzerException.- Parameters:
insn- the bytecode instruction where the analysis failed.message- the reason why the analysis failed.
-
AnalyzerException
public AnalyzerException(org.objectweb.asm.tree.AbstractInsnNode insn, java.lang.String message, java.lang.Throwable cause)Constructs a newAnalyzerException.- Parameters:
insn- the bytecode instruction where the analysis failed.message- the reason why the analysis failed.cause- the cause of the failure.
-
AnalyzerException
public AnalyzerException(org.objectweb.asm.tree.AbstractInsnNode insn, java.lang.String message, java.lang.Object expected, Value actual)Constructs a newAnalyzerException.- Parameters:
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.
-
-