ExceptionHandlerpublic class ExceptionHandler extends Object This class represents an exception handler; that is, an ObjectType
representing a subclass of java.lang.Throwable and the instruction
the handler starts off (represented by an InstructionContext). |
Fields Summary |
---|
private ObjectType | catchtypeThe type of the exception to catch. NULL means ANY. | private InstructionHandle | handlerpcThe InstructionHandle where the handling begins. |
Constructors Summary |
---|
ExceptionHandler(ObjectType catch_type, InstructionHandle handler_pc)Leave instance creation to JustIce.
catchtype = catch_type;
handlerpc = handler_pc;
|
|