System.SysUtils.ShowException

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure ShowException(ExceptObject: TObject; ExceptAddr: Pointer);

C++

extern DELPHI_PACKAGE void __fastcall ShowException(System::TObject* ExceptObject, void * ExceptAddr);

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

Displays an exception message with its physical address.

ShowException displays the message associated with an exception, together with the exception's physical address. The exception's address can be used with Search | Find Error menu command to find the statement that raised the exception.

See Also