ExceptionHandler |
Code.addExceptionHandler() |
Add an exception handler to this code block.
|
ExceptionHandler |
Code.addExceptionHandler(ExceptionHandler handler) |
Import the given exception handler from another code block.
|
ExceptionHandler |
Code.addExceptionHandler(Instruction tryStart,
Instruction tryEnd,
Instruction handlerStart,
java.lang.Class catchType) |
Add an exception handler to this code block.
|
ExceptionHandler |
Code.addExceptionHandler(Instruction tryStart,
Instruction tryEnd,
Instruction handlerStart,
java.lang.String catchType) |
Add an exception handler to this code block.
|
ExceptionHandler |
Code.addExceptionHandler(Instruction tryStart,
Instruction tryEnd,
Instruction handlerStart,
BCClass catchType) |
Add an exception handler to this code block.
|
ExceptionHandler |
Code.getExceptionHandler(java.lang.Class catchType) |
Return the exception handler that catches the given exception type;
if multiple handlers catch the given type, which is returned is
undefined.
|
ExceptionHandler |
Code.getExceptionHandler(java.lang.String catchType) |
Return the exception handler that catches the given exception type;
if multiple handlers catch the given type, which is returned is
undefined.
|
ExceptionHandler |
Code.getExceptionHandler(BCClass catchType) |
Return the exception handler that catches the given exception type;
if multiple handlers catch the given type, which is returned is
undefined.
|
ExceptionHandler[] |
Code.getExceptionHandlers() |
Return the exception handlers active in this code block, or an
empty array if none.
|
ExceptionHandler[] |
Code.getExceptionHandlers(java.lang.Class catchType) |
Return all exception handlers that catch the given exception type,
or an empty array if none.
|
ExceptionHandler[] |
Code.getExceptionHandlers(java.lang.String catchType) |
Return all exception handlers that catch the given exception type,
or an empty array if none.
|
ExceptionHandler[] |
Code.getExceptionHandlers(BCClass catchType) |
Return all exception handlers that catch the given exception type,
or an empty array if none.
|