Here I am going to describe how to use try catch in vb.net. In this try section write your logic and catch section receive(display) your exception use messagebox or write message.
Try
'Write your logic here
Catch ex As Exception
'Here your exception part
Write(ex.ToString)
End Try