Bug? LastException does not exists

Peter Simpson

Expert
Licensed User
Longtime User
When you type 'try' SPACE then hit ENTER, B4R automatically create the following code block. The problem is B4R adds 'LastException' in red, but LastException is not in the commands and objects list for B4R.

BTW I downloaded and double checked the B4R Beginner's Guide, and it is mentioned on page 72 that you should use LastException, but it does not exists in B4R.

B4X:
'Code
    Try
      
    Catch
        Log(LastException)
    End Try
 

atiaust

Active Member
Licensed User
Longtime User
Did this get fixed?

If you type 'Try' followed by space and enter the code block is inserted with "Log(LastException)"

B4R ver 2.80
 
Top