Package ftbsc.lll.exceptions
Class InstructionMismatchException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
ftbsc.lll.exceptions.InstructionMismatchException
- All Implemented Interfaces:
Serializable
Thrown when attempting to build an
InsnList between two unconnected nodes.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInstructionMismatchException(org.objectweb.asm.tree.AbstractInsnNode start, org.objectweb.asm.tree.AbstractInsnNode end) Constructs a new instruction mismatch exception with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InstructionMismatchException
public InstructionMismatchException(org.objectweb.asm.tree.AbstractInsnNode start, org.objectweb.asm.tree.AbstractInsnNode end) Constructs a new instruction mismatch exception with the specified detail message.- Parameters:
start- the first nodeend- the second node
-