ErrObject.GetException メソッド

定義

発生したエラーを表す例外を返します。

public:
 Exception ^ GetException();
public Exception? GetException ();
public Exception GetException ();
member this.GetException : unit -> Exception
Public Function GetException () As Exception

戻り値

発生したエラーを表す例外。

次のコードは、 オブジェクトの例外に割り当てられたメッセージを Err 表示します。

On Error Resume Next
Dim myError As System.Exception
' Generate an overflow exception.
Err.Raise(6)
' Assigns the exception from the Err object to myError.
myError = Err.GetException()
' Displays the message associated with the exception.
MsgBox(myError.Message)

注釈

関数は GetException 、オブジェクト クラスからの Err み使用できます。 オブジェクトの ExceptionErr プロパティを使用して、発生したエラーを表示します。

適用対象

こちらもご覧ください