Go to main content
Oracle® Developer Studio 12.5: Debugging a Program with dbx

Exit Print View

Updated: June 2016
 
 

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.