Functions._SequenceError 方法 | |
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.
命名空间:
XSharp.RT
程序集:
XSharp.RT (在 XSharp.RT.dll 中) 版本:2.22 GA
语法 FUNCTION _SequenceError(
e AS Exception
) AS USUAL
public static __Usual _SequenceError(
Exception e
)
查看代码参数
- e
- 类型:Exception
The exception that triggered the jump into the RECOVER USING block
返回值
类型:
__UsualThe result of the call to the error handler installed in the ErrorBlock
备注
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
参见