TryCatchBlockNodepublic class TryCatchBlockNode extends Object A node that represents a try catch block. |
Fields Summary |
---|
public Label | startBeginning of the exception handler's scope (inclusive). | public Label | endEnd of the exception handler's scope (exclusive). | public Label | handlerBeginning of the exception handler's code. | public String | typeInternal name of the type of exceptions handled by the handler. May be
null to catch any exceptions (for "finally" blocks). |
Constructors Summary |
---|
public TryCatchBlockNode(Label start, Label end, Label handler, String type)Constructs a new {@link TryCatchBlockNode TryCatchBlockNode} object.
this.start = start;
this.end = end;
this.handler = handler;
this.type = type;
|
|