System.SysUtils.EInOutArgumentException.Create

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

constructor Create(const Msg, Path: string); overload;

C++

__fastcall EInOutArgumentException(const System::UnicodeString Msg, const System::UnicodeString Path);
__fastcall EInOutArgumentException(System::PResStringRec ResStringRec, const System::UnicodeString Path);
inline __fastcall EInOutArgumentException(const System::UnicodeString Msg) : EArgumentException(Msg) { }
inline __fastcall EInOutArgumentException(const System::UnicodeString Msg, const System::TVarRec *Args, const int Args_High) : EArgumentException(Msg, Args, Args_High) { }
inline __fastcall EInOutArgumentException(NativeUInt Ident) : EArgumentException(Ident) { }
inline __fastcall EInOutArgumentException(System::PResStringRec ResStringRec) : EArgumentException(ResStringRec) { }
inline __fastcall EInOutArgumentException(NativeUInt Ident, const System::TVarRec *Args, const int Args_High) : EArgumentException(Ident, Args, Args_High) { }
inline __fastcall EInOutArgumentException(System::PResStringRec ResStringRec, const System::TVarRec *Args, const int Args_High) : EArgumentException(ResStringRec, Args, Args_High) { }
inline __fastcall EInOutArgumentException(const System::UnicodeString Msg, int AHelpContext) : EArgumentException(Msg, AHelpContext) { }
inline __fastcall EInOutArgumentException(const System::UnicodeString Msg, const System::TVarRec *Args, const int Args_High, int AHelpContext) : EArgumentException(Msg, Args, Args_High, AHelpContext) { }
inline __fastcall EInOutArgumentException(NativeUInt Ident, int AHelpContext) : EArgumentException(Ident, AHelpContext) { }
inline __fastcall EInOutArgumentException(System::PResStringRec ResStringRec, int AHelpContext) : EArgumentException(ResStringRec, AHelpContext) { }
inline __fastcall EInOutArgumentException(System::PResStringRec ResStringRec, const System::TVarRec *Args, const int Args_High, int AHelpContext) : EArgumentException(ResStringRec, Args, Args_High, AHelpContext) { }
inline __fastcall EInOutArgumentException(NativeUInt Ident, const System::TVarRec *Args, const int Args_High, int AHelpContext) : EArgumentException(Ident, Args, Args_High, AHelpContext) { }

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
constructor public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils EInOutArgumentException

Beschreibung

Instantiiert eine Instanz einer Exception mit einem einfachen Meldungs-String.

System.SysUtils.EInOutArgumentException.Create erbt von System.SysUtils.Exception.Create. Der folgende Inhalt bezieht sich auf System.SysUtils.Exception.Create.

Instantiiert eine Instanz einer Exception mit einem einfachen Meldungs-String.

Mit Create lässt sich ein Exception-Objekt mit einem einfachen Meldungs-String erzeugen.

Msg ist der String mit der Fehlermeldung, die zur Laufzeit im Exception-Dialogfeld angezeigt werden soll. Msg kann ein festcodierter String oder ein Funktionsaufruf sein, der einen String zurückgibt.

Siehe auch

Codebeispiele