System.SysUtils.EInOutArgumentException.Create

De RAD Studio API Documentation
Aller à : navigation, rechercher

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) { }

Propriétés

Type Visibilité  Source Unité  Parent
constructor public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils EInOutArgumentException

Description

Instancie une instance d'une exception avec une simple chaîne de message.

System.SysUtils.EInOutArgumentException.Create hérite de System.SysUtils.Exception.Create. Tout le contenu en-dessous de cette ligne se réfère à System.SysUtils.Exception.Create.

Instancie une instance d'une exception avec une simple chaîne de message.

Appelez Create pour construire un objet exception avec une simple chaîne de message.

Msg représente la chaîne contenant le message d'erreur d'exécution à afficher dans la boîte de dialogue des exceptions. Msg peut être une chaîne codée en dur ou un appel de fonction renvoyant une chaîne.

Voir aussi