System.Classes.TStrings.Error

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Error(const Msg: string; Data: Integer); overload;
procedure Error(Msg: PResStringRec; Data: Integer); overload;

C++

void __fastcall Error(const System::UnicodeString Msg, int Data)/* overload */;
void __fastcall Error(System::PResStringRec Msg, int Data)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.Classes.pas
System.Classes.hpp
System.Classes TStrings

Description

Raises an EStringListError exception.

TStrings calls Error internally to raise an EStringListError exception when it encounters a problem.

Msg specifies the string with a single format specifier for an integer, that appears in the exception message box. It can be either a string, or a pointer to a record structure that indicates the module and resource identifier for a string.

Data is an integer value that is inserted into Msg.

See Also