“Throw”操作数必须从“System.Exception”派生

更新:2007 年 11 月

提供给 Throw 的参数必须是 System.Exception 的实例或从 System.Exception 派生的类的实例。

**错误 ID:**BC30665

更正此错误

  • 使用从 System.Exception 派生的参数,如下面的示例所示。

    Throw New System.Exception("This is an error.")
    

请参见

概念

Visual Basic 中的 Exception 类

参考

Throw 语句 (Visual Basic)

Try...Catch...Finally 语句 (Visual Basic)

其他资源

Visual Basic 中的异常和错误处理