System.Classes.EFCreateError.Create

From RAD Studio API Documentation
Jump to: navigation, search

C++

/* EFileStreamError.Create */ inline __fastcall EFCreateError(System::PResStringRec ResStringRec, const System::UnicodeString FileName) : EFileStreamError(ResStringRec, FileName) { }
/* Exception.CreateFmt */ inline __fastcall EFCreateError(const System::UnicodeString Msg, const System::TVarRec *Args, const int Args_High) : EFileStreamError(Msg, Args, Args_High) { }
/* Exception.CreateRes */ inline __fastcall EFCreateError(NativeUInt Ident)/* overload */ : EFileStreamError(Ident) { }
/* Exception.CreateRes */ inline __fastcall EFCreateError(System::PResStringRec ResStringRec)/* overload */ : EFileStreamError(ResStringRec) { }
/* Exception.CreateResFmt */ inline __fastcall EFCreateError(NativeUInt Ident, const System::TVarRec *Args, const int Args_High)/* overload */ : EFileStreamError(Ident, Args, Args_High) { }
/* Exception.CreateResFmt */ inline __fastcall EFCreateError(System::PResStringRec ResStringRec, const System::TVarRec *Args, const int Args_High)/* overload */ : EFileStreamError(ResStringRec, Args, Args_High) { }
/* Exception.CreateHelp */ inline __fastcall EFCreateError(const System::UnicodeString Msg, int AHelpContext) : EFileStreamError(Msg, AHelpContext) { }
/* Exception.CreateFmtHelp */ inline __fastcall EFCreateError(const System::UnicodeString Msg, const System::TVarRec *Args, const int Args_High, int AHelpContext) : EFileStreamError(Msg, Args, Args_High, AHelpContext) { }
/* Exception.CreateResHelp */ inline __fastcall EFCreateError(NativeUInt Ident, int AHelpContext)/* overload */ : EFileStreamError(Ident, AHelpContext) { }
/* Exception.CreateResHelp */ inline __fastcall EFCreateError(System::PResStringRec ResStringRec, int AHelpContext)/* overload */ : EFileStreamError(ResStringRec, AHelpContext) { }
/* Exception.CreateResFmtHelp */ inline __fastcall EFCreateError(System::PResStringRec ResStringRec, const System::TVarRec *Args, const int Args_High, int AHelpContext)/* overload */ : EFileStreamError(ResStringRec, Args, Args_High, AHelpContext) { }
/* Exception.CreateResFmtHelp */ inline __fastcall EFCreateError(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 EFCreateError

Description

Creates an instance of EFCreateError.

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

See Also