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 可用。 它与 对象的 属性Err一起使用Exception,以显示已发生的错误。

适用于

另请参阅