Files
python/reference/concepts/exception_catching.md

6 lines
354 B
Markdown
Raw Permalink Normal View History

# 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](../exercise-concepts/hamming.md)