Throw Exception Without Catch : Throw « Development « VB.Net Tutorial






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








7.8.Throw
7.8.1.Throw ApplicationException
7.8.2.Throw Exception with catch
7.8.3.Throw Exception Without Catch
7.8.4.Throw Exception Catch Rethrow
7.8.5.Throw custom exception