iOS Question How do I display the Exception in the JobDone function

davepamn

Active Member
Licensed User
Longtime User
B4X:
Sub JobDone(Job as HttpJob)
if Job.Success=true then

...
else
  (Display cause of failure)
  Msgbox(Job.GetString,"Job Failed" & job.ErrorMessage)
end if
end sub

I am getting a message "Unknown Error" - that doesn't help much
 
Top