API:Data.DBXCommon.TDBXError.Message

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Message: string read FErrorMessage;

C++

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

Properties

Type Visibility Source Unit Parent
property public
Data.DBXCommon.pas
Data.DBXCommon.hpp
Data.DBXCommon TDBXError

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