Throw Exception with catch : Throw « Development « VB.Net Tutorial






Public Class Tester
    Public Shared Sub Main
      Try
         Throw New Exception("Exception in ThrowExceptionWithCatch")
      Catch exceptionParameter As Exception
         Console.WriteLine("Message: " & exceptionParameter.Message)
      Finally
         Console.WriteLine("Finally executed in ThrowExceptionWithCatch")

      End Try

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


End Class
Message: Exception in ThrowExceptionWithCatch
Finally executed in ThrowExceptionWithCatch
End of ThrowExceptionWithCatch








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