System.SysUtils.Exception.BaseException

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property BaseException: Exception read GetBaseException;

C++

__property Exception* BaseException = {read=GetBaseException};

Properties

Type Visibility Source Unit Parent
property public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils Exception

Description

BaseException specifies the innermost exception.

Read the value of the BaseException property to obtain the innermost exception. If there are no inner exceptions that triggered the current one, BaseException returns the current exception; otherwise BaseException inspects the inner exceptions until it finds the first one that triggered the chain of exceptions.

See Also