REST.Backend.KinveyApi.EKinveyAPIError.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(const AError, ADescription: string); overload;

C++

__fastcall EKinveyAPIError(const System::UnicodeString AError, const System::UnicodeString ADescription)/* overload */;
/* Exception.CreateFmt */ inline __fastcall EKinveyAPIError(const System::UnicodeString Msg, const System::TVarRec *Args, const int Args_High) : Rest::Backend::Exception::EBackendAPIError(Msg, Args, Args_High) { }
/* Exception.CreateRes */ inline __fastcall EKinveyAPIError(NativeUInt Ident)/* overload */ : Rest::Backend::Exception::EBackendAPIError(Ident) { }
/* Exception.CreateRes */ inline __fastcall EKinveyAPIError(System::PResStringRec ResStringRec)/* overload */ : Rest::Backend::Exception::EBackendAPIError(ResStringRec) { }
/* Exception.CreateResFmt */ inline __fastcall EKinveyAPIError(NativeUInt Ident, const System::TVarRec *Args, const int Args_High)/* overload */ : Rest::Backend::Exception::EBackendAPIError(Ident, Args, Args_High) { }
/* Exception.CreateResFmt */ inline __fastcall EKinveyAPIError(System::PResStringRec ResStringRec, const System::TVarRec *Args, const int Args_High)/* overload */ : Rest::Backend::Exception::EBackendAPIError(ResStringRec, Args, Args_High) { }
/* Exception.CreateHelp */ inline __fastcall EKinveyAPIError(const System::UnicodeString Msg, int AHelpContext) : Rest::Backend::Exception::EBackendAPIError(Msg, AHelpContext) { }
/* Exception.CreateFmtHelp */ inline __fastcall EKinveyAPIError(const System::UnicodeString Msg, const System::TVarRec *Args, const int Args_High, int AHelpContext) : Rest::Backend::Exception::EBackendAPIError(Msg, Args, Args_High, AHelpContext) { }
/* Exception.CreateResHelp */ inline __fastcall EKinveyAPIError(NativeUInt Ident, int AHelpContext)/* overload */ : Rest::Backend::Exception::EBackendAPIError(Ident, AHelpContext) { }
/* Exception.CreateResHelp */ inline __fastcall EKinveyAPIError(System::PResStringRec ResStringRec, int AHelpContext)/* overload */ : Rest::Backend::Exception::EBackendAPIError(ResStringRec, AHelpContext) { }
/* Exception.CreateResFmtHelp */ inline __fastcall EKinveyAPIError(System::PResStringRec ResStringRec, const System::TVarRec *Args, const int Args_High, int AHelpContext)/* overload */ : Rest::Backend::Exception::EBackendAPIError(ResStringRec, Args, Args_High, AHelpContext) { }
/* Exception.CreateResFmtHelp */ inline __fastcall EKinveyAPIError(NativeUInt Ident, const System::TVarRec *Args, const int Args_High, int AHelpContext)/* overload */ : Rest::Backend::Exception::EBackendAPIError(Ident, Args, Args_High, AHelpContext) { }

Properties

Type Visibility Source Unit Parent
constructor public
REST.Backend.KinveyApi.pas
REST.Backend.KinveyApi.hpp
REST.Backend.KinveyApi EKinveyAPIError

Description

Creates an instance of EKinveyAPIError.

The Create constructor takes the following two parameters:

  • The AError parameter corresponds to the Error property.
  • The ADescription parameter corresponds to the Description property.

After assigning the parameters to the properties, the Create method calls the CreateFmt method, creator of its ancestor.

See Also