System.SysUtils.EInOutArgumentException.Create

From RAD Studio API Documentation
Jump to: navigation, search

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

Properties

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

Description

Instantiates an instance of an exception with a simple message string.

System.SysUtils.EInOutArgumentException.Create inherits from System.SysUtils.Exception.Create. All content below this line refers to System.SysUtils.Exception.Create.

Instantiates an instance of an exception with a simple message string.

Call Create to construct an exception object with a simple message string.

Msg is the string containing the run-time error message to display in the exception dialog box. Msg can be a hard-coded string or can be a function call that returns a string.

See Also

Code Examples