Package javassist.bytecode.analysis
Class ControlFlow.Catcher
- java.lang.Object
-
- javassist.bytecode.analysis.ControlFlow.Catcher
-
- Enclosing class:
- ControlFlow
public static class ControlFlow.Catcher extends java.lang.Object
Represents a catch clause.
-
-
Field Summary
Fields Modifier and Type Field Description private ControlFlow.Block
node
private int
typeIndex
-
Constructor Summary
Constructors Constructor Description Catcher(BasicBlock.Catch c)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ControlFlow.Block
block()
Returns the first block of the catch clause.java.lang.String
type()
Returns the name of the exception type that this catch clause catches.
-
-
-
Field Detail
-
node
private ControlFlow.Block node
-
typeIndex
private int typeIndex
-
-
Constructor Detail
-
Catcher
Catcher(BasicBlock.Catch c)
-
-
Method Detail
-
block
public ControlFlow.Block block()
Returns the first block of the catch clause.
-
type
public java.lang.String type()
Returns the name of the exception type that this catch clause catches.
-
-