Visual Basic .NET Language
Fehlerbehandlung
Suche…
Versuchen Sie ... Fang ... Endlich Statement
Struktur:
Try
'Your program will try to run the code in this block.
'If any exceptions are thrown, the code in the Catch Block will be executed,
'without executing the lines after the one which caused the exception.
Catch ex As System.IO.IOException
'If an exception occurs when processing the Try block, each Catch statement
'is examined in textual order to determine which handles the exception.
'For example, this Catch block handles an IOException.
Catch ex As Exception
'This catch block handles all Exception types.
'Details of the exception, in this case, are in the "ex" variable.
'You can show the error in a MessageBox with the below line.
MessageBox.Show(ex.Message)
Finally
'A finally block is always executed, regardless of if an Exception occurred.
End Try
Beispielcode:
Try
Dim obj = Nothing
Dim prop = obj.Name 'This line will throw a NullReferenceException
Console.WriteLine("Test.") ' This line will NOT be executed
Catch ex As System.IO.IOException
' Code that reacts to IOException.
Catch ex As NullReferenceException
' Code that reacts to a NullReferenceException
Console.WriteLine("NullReferenceException: " & ex.Message)
Console.WriteLine("Stack Trace: " & ex.StackTrace)
Catch ex As Exception
' Code that reacts to any other exception.
Finally
' This will always be run, regardless of if an exception is thrown.
Console.WriteLine("Completed")
End Try
Benutzerdefinierte Ausnahme erstellen und auslösen
Sie können eine benutzerdefinierte Ausnahme erstellen und diese während der Ausführung Ihrer Funktion auslösen. In der Regel sollten Sie nur dann eine Ausnahme auslösen, wenn Ihre Funktion ihre definierte Funktionalität nicht erreichen kann.
Private Function OpenDatabase(Byval Server as String, Byval User as String, Byval Pwd as String)
if Server.trim="" then
Throw new Exception("Server Name cannot be blank")
elseif User.trim ="" then
Throw new Exception("User name cannot be blank")
elseif Pwd.trim="" then
Throw new Exception("Password cannot be blank")
endif
'Here add codes for connecting to the server
End function
Versuchen Sie Catch in Database Operation
Sie können Try..Catch zum Rollback der Datenbankoperation verwenden, indem Sie die Rollback-Anweisung im Catch-Segment platzieren.
Try
'Do the database operation...
xCmd.CommandText = "INSERT into ...."
xCmd.ExecuteNonQuery()
objTrans.Commit()
conn.Close()
Catch ex As Exception
'Rollback action when something goes off
objTrans.Rollback()
conn.Close()
End Try
Die nicht einfangbare Ausnahme
Obwohl Catch ex As Exception
behauptet, dass es alle Ausnahmen verarbeiten kann, gibt es eine Ausnahme (kein Wortspiel vorgesehen).
Imports System
Static Sub StackOverflow() ' Again no pun intended
StackOverflow()
End Sub
Static Sub Main()
Try
StackOverflow()
Catch ex As Exception
Console.WriteLine("Exception caught!")
Finally
Console.WriteLine("Finally block")
End Try
End Sub
Hoppla ... Es gibt eine nicht erfasste System.StackOverflowException
während die Konsole nichts gedruckt hat! Laut MSDN
Ab .NET Framework 2.0 können Sie ein StackOverflowException-Objekt mit einem try / catch-Block nicht abfangen. Der entsprechende Prozess wird standardmäßig beendet. Daher sollten Sie Ihren Code schreiben, um einen Stapelüberlauf zu erkennen und zu verhindern.
Daher ist System.StackOverflowException
nicht System.StackOverflowException
. Hüte dich davor!
Kritische Ausnahmen
Im Allgemeinen sind die meisten Ausnahmen nicht so kritisch, aber es gibt einige wirklich schwerwiegende Ausnahmen, mit denen Sie möglicherweise nicht umgehen können, z. B. die berühmte System.StackOverflowException
. Es gibt jedoch andere, die möglicherweise durch Catch ex As Exception
ausgeblendet werden, z. B. System.OutOfMemoryException
, System.BadImageFormatException
und System.InvalidProgramException
. Es ist eine gute Programmierpraxis, diese wegzulassen, wenn Sie nicht richtig damit umgehen können. Um diese Ausnahmen herauszufiltern, benötigen wir eine Hilfsmethode:
Public Shared Function IsCritical(ex As Exception) As Boolean
Return TypeOf ex Is OutOfMemoryException OrElse
TypeOf ex Is AppDomainUnloadedException OrElse
TypeOf ex Is AccessViolationException OrElse
TypeOf ex Is BadImageFormatException OrElse
TypeOf ex Is CannotUnloadAppDomainException OrElse
TypeOf ex Is ExecutionEngineException OrElse ' Obsolete one, but better to include
TypeOf ex Is InvalidProgramException OrElse
TypeOf ex Is System.Threading.ThreadAbortException
End Function
Verwendungszweck:
Try
SomeMethod()
Catch ex As Exception When Not IsCritical(ex)
Console.WriteLine("Exception caught: " & ex.Message)
End Try