System.SysUtils.EInOutError.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

Properties

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

Description

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

System.SysUtils.EInOutError.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