API:Data.DBXCommon.TDBXError.Message

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Data.DBXCommon.pas
Data.DBXCommon.hpp
Unit: Data.DBXCommon
Parent: TDBXError

Delphi

property Message: string read FErrorMessage;

C++

__property System::UnicodeString Message = {read=FErrorMessage};

Description

Message contains the text string to display in the exception dialog box when the exception is raised.

Data.DBXCommon.TDBXError.Message inherits from System.SysUtils.Exception.Message. All content below this line refers to System.SysUtils.Exception.Message.

Message contains the text string to display in the exception dialog box when the exception is raised.

Message stores the error-message string to display when the exception is raised. All Exception constructors expect a string parameter to store in Message. Message text can be hard-coded as a parameter to an Exception constructor, created as dynamic parameter, or loaded from a resource file as a static or dynamically formatted parameter.

See Also