GetException 函式
更新:2007 年 11 月
傳回代表發生錯誤的例外狀況。
Overridable Public Function GetException() As Exception
備註
只有 Err 物件類別 (Class) 才有 GetException 函式。它使用 Err 物件的 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)
需求
命名空間 (Namespace)︰Microsoft.VisualBasic
**類別︰**Err Object
組件 (Assembly):Visual Basic Runtime Library (在 Microsoft.VisualBasic.dll 中)