currently, if you try/catch a block of python code, there's no standard/good way to pass on that error to the console with full stack trace, &c, and also send any expected output messages. It would be nice you could just```
try:
#code logic
except Exception as e:
self.api.error(e)```
and let the api do the rest.
david rice
currently, if you try/catch a block of python code, there's no standard/good way to pass on that error to the console with full stack trace, &c, and also send any expected output messages. It would be nice you could just
```
try:
#code logic
except Exception as e:
self.api.error(e)
```
and let the api do the rest.