Sun Studio 12: Debugging a Program With dbx

unintercept Command

The unintercept command undoes intercept commands (C++ only). It is valid only in native mode.

Syntax

unintercept intercepted_typename [, intercepted_typename ... ]

Delete throws of type intercepted_typename from the intercept list.

unintercept -a[ll]

Delete all throws of all types from intercept list.

unintercept -x excluded_typename [, excluded_typename ... ]

Delete excluded_typename from excluded list.

unintercept -x -a[ll]

Delete all throws of all types from the excluded list.

unintercept

List intercepted types.

where:

included_typename and excluded_typename are exception type specifications such as List <int> or unsigned short.