Mega Code Archive

 
Categories / VB.Net Tutorial / Development
 

Throw Exception Without Catch

Public Class Tester     Public Shared Sub Main       Try          Console.WriteLine("In ThrowExceptionWithoutCatch")          Throw New Exception("Exception in ThrowExceptionWithoutCatch")       Finally          Console.WriteLine("Finally executed in ThrowExceptionWithoutCatch")       End Try     End Sub End Class In ThrowExceptionWithoutCatch Unhandled Exception: System.Exception: Exception in ThrowExceptionWithoutCatch at Tester.Main() Finally executed in ThrowExceptionWithoutCatch