_SequenceError Function | |
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
public static Usual _SequenceError(
Exception e
)
Request Example
View SourceParameters
- e
- Type: Exception
The exception that triggered the jump into the RECOVER USING block
Return Value
Type:
UsualThe 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
1FUNCTION _SequenceError(e as Exception) AS VOID
See Also