'Throw' オペランドは、'System.Exception' から派生しなければなりません。

更新 : 2007 年 11 月

Throw に指定する引数は、System.Exception のインスタンスであるか、System.Exception の派生クラスのインスタンスである必要があります。

Error ID: BC30665

このエラーを解決するには

  • 次の例のように、System.Exception から派生した引数を指定します。

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

参照

概念

Visual Basic の例外クラス

参照

Throw ステートメント (Visual Basic)

Try...Catch...Finally ステートメント (Visual Basic)

その他の技術情報

Visual Basic での例外およびエラー処理