1 package com.sun.org.apache.bcel.internal.verifier.structurals; 2 3 56 57 import com.sun.org.apache.bcel.internal.generic.*; 58 59 67 public class ExceptionHandler{ 68 69 private ObjectType catchtype; 70 71 72 private InstructionHandle handlerpc; 73 74 75 ExceptionHandler(ObjectType catch_type, InstructionHandle handler_pc){ 76 catchtype = catch_type; 77 handlerpc = handler_pc; 78 } 79 80 83 public ObjectType getExceptionType(){ 84 return catchtype; 85 } 86 87 90 public InstructionHandle getHandlerStart(){ 91 return handlerpc; 92 } 93 } 94 | Popular Tags |