System.Classes.EFOpenError.Create

From RAD Studio API Documentation
Jump to: navigation, search

C++

/* EFileStreamError.Create */ inline __fastcall EFOpenError(System::PResStringRec ResStringRec, const System::UnicodeString FileName) : EFileStreamError(ResStringRec, FileName) { }
/* Exception.CreateFmt */ inline __fastcall EFOpenError(const System::UnicodeString Msg, const System::TVarRec *Args, const int Args_High) : EFileStreamError(Msg, Args, Args_High) { }
/* Exception.CreateRes */ inline __fastcall EFOpenError(NativeUInt Ident)/* overload */ : EFileStreamError(Ident) { }
/* Exception.CreateRes */ inline __fastcall EFOpenError(System::PResStringRec ResStringRec)/* overload */ : EFileStreamError(ResStringRec) { }
/* Exception.CreateResFmt */ inline __fastcall EFOpenError(NativeUInt Ident, const System::TVarRec *Args, const int Args_High)/* overload */ : EFileStreamError(Ident, Args, Args_High) { }
/* Exception.CreateResFmt */ inline __fastcall EFOpenError(System::PResStringRec ResStringRec, const System::TVarRec *Args, const int Args_High)/* overload */ : EFileStreamError(ResStringRec, Args, Args_High) { }
/* Exception.CreateHelp */ inline __fastcall EFOpenError(const System::UnicodeString Msg, int AHelpContext) : EFileStreamError(Msg, AHelpContext) { }
/* Exception.CreateFmtHelp */ inline __fastcall EFOpenError(const System::UnicodeString Msg, const System::TVarRec *Args, const int Args_High, int AHelpContext) : EFileStreamError(Msg, Args, Args_High, AHelpContext) { }
/* Exception.CreateResHelp */ inline __fastcall EFOpenError(NativeUInt Ident, int AHelpContext)/* overload */ : EFileStreamError(Ident, AHelpContext) { }
/* Exception.CreateResHelp */ inline __fastcall EFOpenError(System::PResStringRec ResStringRec, int AHelpContext)/* overload */ : EFileStreamError(ResStringRec, AHelpContext) { }
/* Exception.CreateResFmtHelp */ inline __fastcall EFOpenError(System::PResStringRec ResStringRec, const System::TVarRec *Args, const int Args_High, int AHelpContext)/* overload */ : EFileStreamError(ResStringRec, Args, Args_High, AHelpContext) { }
/* Exception.CreateResFmtHelp */ inline __fastcall EFOpenError(NativeUInt Ident, const System::TVarRec *Args, const int Args_High, int AHelpContext)/* overload */ : EFileStreamError(Ident, Args, Args_High, AHelpContext) { }

Properties

Type Visibility Source Unit Parent
constructor public System.Classes.hpp System.Classes EFOpenError

Description

Creates an instance of EFOpenError.

This exception class creator accepts the same combinations of parameters as EFileStreamError does.

See Also