ErrObject.GetException 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回表示所发生错误的异常。
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
,以显示已发生的错误。