1Imports System
2Imports System.Collections
3Imports System.Reflection
4
5Namespace TryCatch3
6    Class Test
7        Shared Function Main() As Integer
8            Try
9                Throw New Exception
10            Catch ex As Exception
11                Console.WriteLine(ex.message)
12                Return 0
13            End Try
14        End Function
15    End Class
16End Namespace