6 lines
354 B
Markdown
6 lines
354 B
Markdown
|
|
# 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)
|