'Throw' オペランドは、'System.Exception' から派生しなければなりません。
更新 : 2007 年 11 月
Throw に指定する引数は、System.Exception のインスタンスであるか、System.Exception の派生クラスのインスタンスである必要があります。
Error ID: BC30665
このエラーを解決するには
次の例のように、System.Exception から派生した引数を指定します。
Throw New System.Exception("This is an error.")
参照
概念
参照
Try...Catch...Finally ステートメント (Visual Basic)