FileSpec.Error Method | |
Provide a method for handling error conditions raised during FileSpec processing. This is an event handler: it is automatically called by other methods; the developer does not normally need to call the error method, but might want to replace or amend it.
Namespace:
VO
Assembly:
VOSystemClasses (in VOSystemClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Error(
oError,
symMethod
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual Error(
Usual oError = default,
Usual symMethod = default
)
Request Example
View SourceParameters
- 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:
UsualRemarks
All methods of the FileSpec trap serious errors with a recover statement and send them to this method. Ordinary failures, such as file-not-found, do not raise error conditions; they are simply indicated through failure return values.
The standard Error() handling method fills in some more information about the errors and about the FileSpec object that originates the error and sets the status value for the server object, in its standard Error() handling method. The method passes it up the call stack by issuing a BREAK with the same Error object.
See Also