Catch all Errors

Emme Developer

Well-Known Member
Licensed User
Longtime User
No need to explain

B4X:
Try
        Dim i As Int = "boh"
    Catch
        Msgbox("¯\_(ツ)_/¯","")
        Log(LastException)
    End Try
 

Star-Dust

Expert
Licensed User
Longtime User
explain.
do you mean with this code? Did you discover something new?
 

Douglas Farias

Expert
Licensed User
Longtime User
Or
B4X:
Try
   Dim i As Int = "boh"
Catch
   Private p As PhoneIntents
   StartActivity (p.OpenBrowser("https://www.b4x.com/android/forum/pages/results/?query="&LastException))
End Try

1486460356_768109_1486460432_noticia_normal.jpg



:)
 
Top