Bagikan melalui


ErrObject.GetException Metode

Definisi

Mengembalikan pengecualian yang mewakili kesalahan yang terjadi.

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

Mengembalikan

Pengecualian yang mewakili kesalahan yang terjadi.

Contoh

Kode berikut menampilkan pesan yang ditetapkan ke pengecualian dalam Err objek :

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)

Keterangan

Fungsi GetException ini hanya tersedia dari Err kelas objek. Ini bekerja dengan Exception properti Err objek untuk menampilkan kesalahan yang telah terjadi.

Berlaku untuk

Lihat juga