Files
python/reference/concepts/exception_catching.md
Michael Morehouse 29478dd68c Organize concepts, eliminate duplication
* Stage 1

* Finish restructuring, add checkboxes.

* Minor format fixes

* fixing broken link

* fixing broken link

* fixing README link

* Fix multiples bad links

* Fix links in reference/concepts/keywords/README.md

* Correcting list description
2021-01-29 11:14:36 -05:00

354 B

Exception catching

TODO: ADD MORE

  • Exceptions can be caught from outside the scope where they are raised, using the try/except syntax. All Exceptions types inherit from the base class, Exception and thus can be caught by either checking specifically for the type of Exception, or for any Exception hamming