ErrorEventArgs Constructor (Exception)
.NET Framework (current version)
Initializes a new instance of the ErrorEventArgs class.
Assembly: System (in System.dll)
The following example creates a new instance of ErrorEventArgs and initializes it with an Exception. Then the example calls GetException to retrieve the Exception and display the error message. There is no form associated with this code.
Public Shared Sub Main() 'Creates an exception with an error message. Dim myException As New Exception("This is an exception test") 'Creates an ErrorEventArgs with the exception. Dim myErrorEventArgs As New ErrorEventArgs(myException) 'Extracts the exception from the ErrorEventArgs and display it. Dim myReturnedException As Exception = myErrorEventArgs.GetException() MessageBox.Show("The returned exception is: " _ + myReturnedException.Message) End Sub
.NET Framework
Available since 1.1
Available since 1.1
Show: