Dim num As Int = 10
Dim divider As Int = 0
Try
If divider = 0 Then
BANano.Throw("You can not divide by 0!")
Else
Log(num/divider)
End If
Catch
Log(LastException)
' will still do the Finally part, but not the "After the Try" log.
Return
BANano.Finally 'ignore
Log("Always doing this")
End Try
Log("After the Try")