Click or drag to resize

HyperLabel.Error Method

X#
Provide a method for handling error conditions raised during hyperlabel processing.

Namespace:  VO
Assembly:  VOSystemClasses (in VOSystemClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD Error(
	oError,
	symMethod
) AS USUAL CLIPPER
Request Example View Source

Parameters

oError (Optional)
Type: Usual
An Error object describing the error condition.
symMethod (Optional)
Type: Usual
The symbolic name of the method that originated the error.

Return Value

Type: Usual
Remarks
Tip Tip
This is an event handler and is automatically called by other methods; the developer does not normally need to call the HyperLabel:Error() method, but might want to replace or amend it.
The standard Error() handling method fills in some more information about the errors and about the HyperLabel object that originates the error, sets the status value for the object, and passes the problem to its client, if there is one, in its standard Error() handling method. If there is no client who wants to deal with the problem, the method passes it up the call stack by issuing a BREAK with the same Error object.
Tip Tip
If an error comes in while one is being handled, the Error() method immediately breaks.
See Also