Here's some example of some code...
Private Sub btnDoSomething_Click(sender As System.Object, e As System.EventArgs) Handles btnDoSomething.Click
If True Then
Try
Catch ex As Exception
End Try
Else
Try
Catch ex As Exception
End Try
End If
End Sub
Are there any differences to adding a Try/Catch on true and false or just to wrap entire If within one Try/Catch?