Table of contents
- What are Exceptions?
- Why use Exception
- What are Errors?
- Syntax error
- Logical errors (Exception)
- Built-in Exceptions
- The try and except Block to Handling Exceptions
- Catching Specific Exceptions
- Handle multiple exceptions with a single except clause
- Using try with finally
- Using try with else clause
- Raising an Exceptions
- Exception Chaining
- Custom and User-defined Exceptions
- Customizing Exception Classes
- Exception Lifecycle
- Warnings
‣
1.0 What are Errors?
‣
2.0 What are Exceptions
‣
3.0 Exceptions vs Errors in Python
‣
4.0 Python Built-in Exceptions
‣
5. 0 Try and except Block to Handling Exceptions
‣
6.0 Combining try-except-finally
‣
7.0 Using try with else clause
‣
8. Raising Exceptions in Python (raise Statement)
‣
9. Exception Chaining
‣
10. Custom and User-defined Exceptions
‣
11. Customizing Exception Classes
‣
12. Exception Lifecycle
‣