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






Public Class Tester
    Public Shared Sub Main
      Try
         ThrowExceptionCatchRethrow()
      Catch
         Console.WriteLine("Caught exception from ThrowExceptionCatchRethrow in Main")

      End Try

    End Sub

   Public Shared Sub ThrowExceptionCatchRethrow()

      Try
         Console.WriteLine("In ThrowExceptionCatchRethrow")
         Throw New Exception("Exception in ThrowExceptionCatchRethrow")
      Catch exceptionParameter As Exception
         Console.WriteLine("Message: " & exceptionParameter.Message)
         Throw exceptionParameter
      Finally
         Console.WriteLine("Finally executed in ThrowException")
      End Try


      Console.WriteLine("End of ThrowExceptionCatchRethrow")
   End Sub


End Class
In ThrowExceptionCatchRethrow
Message: Exception in ThrowExceptionCatchRethrow
Finally executed in ThrowException
Caught exception from ThrowExceptionCatchRethrow in Main








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