B4X:
Sub ShowLastException(sSubjectLine As String)
Dim ex As String
Dim stripEX As String
ex=LastException.Message
stripEX=ex.SubString(28)
Msgbox(stripEX,sSubjectLine)
End Sub
The compiler says that LastExpection.Message does not exist
I used LastExpection.Description
It seems to compile