Xml.XMLDoc.XMLDocError
Delphi
procedure XMLDocError(const Msg: string); overload;
procedure XMLDocError(const Msg: string; const Args: array of const); overload;
C++
extern DELPHI_PACKAGE void __fastcall XMLDocError(const System::UnicodeString Msg)/* overload */;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | Xml.XMLDoc.pas Xml.XMLDoc.hpp |
Xml.XMLDoc | Xml.XMLDoc |
Description
Raises an EXMLDocError exception.
Call XMLDocError to raise an EXMLDocError exception. Using XMLDocError rather than explicitly creating the EXMLDocError instance can result in more space-efficient code.
Msg is the error message associated with the EXMLDocError instance.
Args supplies arguments for any format specifiers embedded in Msg.
Note: Args_Size is the index of the last entry in the Args array. That is one less than the total number of arguments.