Class ExceptionRange
java.lang.Object
com.sun.jdo.api.persistence.enhancer.classfile.ExceptionRange
ExceptionRange represents a range an exception handler within
a method in class file.
-
Constructor Summary
ConstructorsConstructorDescriptionExceptionRange(InsnTarget startPC, InsnTarget endPC, InsnTarget handlerPC, ConstClass catchType) constructor -
Method Summary
-
Constructor Details
-
ExceptionRange
public ExceptionRange(InsnTarget startPC, InsnTarget endPC, InsnTarget handlerPC, ConstClass catchType) constructor
-
-
Method Details
-
startPC
return the start of the exception hander (inclusive) -
endPC
return the end of the exception hander (exclusive) -
handlerPC
return the exception handler code -
catchType
return the exception specification a null return value means a catch of any (try/finally)
-