Data.DB.TDataSet.InternalHandleException

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure InternalHandleException; virtual; abstract;

C++

virtual void __fastcall InternalHandleException() = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Data.DB.pas
Data.DB.hpp
Data.DB TDataSet

Description

Responds to exceptions related to TDataSet objects.

InternalHandleException is used internally to deal with the exceptions that occur in TDataSet and descendant objects. If the method cannot do so, an error message to the user is displayed. For example, the method is used by Loaded to handle the exceptions that may appear when a TDataSet object is loaded.

This method is abstract, so every TDataSet descendant should implement it in its specific way.

See Also