# Interface: com.pnfsoftware.jeb.core.units.code.android.dex.IDexExceptionHandler

This interface represents information about an exception handler. Retrieved via [IDexExceptionItem#getHandlers()](IDexExceptionItem#getHandlers()).

## Method: getAddress
- return type: `int`

Description: Get the handler's code address.
return: the address in bytes

## Method: getTypeIndex
- return type: `int`

Description: Get the type of exceptions checked by this catch handler.
return: the type index, of \-1 if the catch handler is untyped

## Method: resolveType
- parameter: `dex`, type: `com.pnfsoftware.jeb.core.units.code.android.IDexUnit`
- return type: `com.pnfsoftware.jeb.core.units.code.android.dex.IDexType`

Description: Resolve the catch handler type.
parameter: dex: the dex unit used to resolve the type
return: the resolved type, or null for an untyped catch handler

