More complex exception handling
•
Finally clause - code in it is always run,
irregardless of if an exception is thrown
or not.
–
Any code you want to run no matter what
should be there (eg closing streams)
•