jas
Class CatchEntry
java.lang.Object
jas.CatchEntry
public class CatchEntry
- extends Object
Constructor Summary |
CatchEntry(int start,
int end,
int handler,
CP cat)
Catch entries are created and then added to the Catchtable. |
CatchEntry(Label start,
Label end,
Label handler,
CP cat)
Catch entries are created and then added to the Catchtable. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notifyAll, notify, toString, wait, wait, wait |
CatchEntry
public CatchEntry(Label start,
Label end,
Label handler,
CP cat)
- Catch entries are created and then added to the Catchtable.
- Parameters:
start
- Label marking the beginning of the area
where the catch table is active.end
- Label marking the end of the area where the
table is active.handler
- Label marking the entrypoint into the
exception handling routine.cat
- (usually a classCP) informing the VM to direct
any exceptions of this (or its subclasses) to the handler.- See Also:
Catchtable
CatchEntry
public CatchEntry(int start,
int end,
int handler,
CP cat)
- Catch entries are created and then added to the Catchtable.
- Parameters:
start
- offset marking the beginning of the area
where the catch table is active.end
- offset marking the end of the area where the
table is active.handler
- offset marking the entrypoint into the
exception handling routine.cat
- (usually a classCP) informing the VM to direct
any exceptions of this (or its subclasses) to the handler.- See Also:
Catchtable
Copyright © 2006 Jonathan Meyer, USA All rights reserved.