Click or drag to resize

_SequenceError Function

X#
This function is automatically inserted by the compiler in a RECOVER USING block and gets called when the RECOVER USING block is reached because of an exception.

Namespace:  XSharp.RT
Assembly:  XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax
 FUNCTION _SequenceError(
	e AS Exception
) AS USUAL
Request Example View Source

Parameters

e
Type: Exception
The exception that triggered the jump into the RECOVER USING block

Return Value

Type: Usual
The result of the call to the error handler installed in the ErrorBlock
Remarks
The default implementation of this function (in the XSharp.RT assembly) called the installed error handler that is installed with ErrorBlock() The function should then have the following prototype
X#
1FUNCTION _SequenceError(e as Exception) AS VOID
See Also