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:
Serializable
public class AnalyzerException extends Exception
Thrown if a problem occurs during the analysis of a method.- Author:
- Bing Ran, Eric Bruneton
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description AbstractInsnNode
node
-
Constructor Summary
Constructors Constructor Description AnalyzerException(AbstractInsnNode node, String msg)
AnalyzerException(AbstractInsnNode node, String msg, Object expected, Value encountered)
AnalyzerException(AbstractInsnNode node, String msg, Throwable exception)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
node
public final AbstractInsnNode node
-
-
Constructor Detail
-
AnalyzerException
public AnalyzerException(AbstractInsnNode node, String msg)
-
AnalyzerException
public AnalyzerException(AbstractInsnNode node, String msg, Throwable exception)
-
AnalyzerException
public AnalyzerException(AbstractInsnNode node, String msg, Object expected, Value encountered)
-
-