System.JSON.Types.EJsonException.InnerException

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property InnerException: Exception read FInnerException;

C++

__property System::Sysutils::Exception* InnerException = {read=FInnerException};

Properties

Type Visibility Source Unit Parent
property public
System.JSON.Types.pas
System.JSON.Types.hpp
System.JSON.Types EJsonException

Description

InnerException specifies the inner exception.

Read the value of the InnerException property to obtain the inner exception. If there are no exceptions that triggered the current one, InnerException returns nil; otherwise InnerException returns the inner exception that triggered a specific exception.

EJsonReaderException.Create uses the underlying exception to create a EJsonReaderException.

See Also