AbstractErrorProc

Belongs to : Variable

Description

The AbstractErrorProc variable defines to Delphi a procedure that it should call when your code erroneously calls an abstract method of a class.

Abstract methods are placeholder methods – only to be implemented by derived classes. The parent class is really a skeleton class, and therefore should not be instantiated into an object. delphi will warn you if you do. If you call an abstract method, it will call AbstractErrorProc before terminating with an error. If not found, it will throw EAbstractError exception instead.

Notes
You should normally avoid calling abstract methods.




Example code