Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Catching errors with try/catch/finally

Whenever your code executes there's a chance something can go wrong, especially if you're communicating with external systems. By using try/catch/finally you can allow your code to catch errors and properly handle them.

Further reading