Konubinix' opinionated web of thoughts

Python Exceptions

Fleeting

programmers are encouraged to derive new exceptions from the Exception class or one of its subclasses, and not from BaseException

https://docs.python.org/3/library/exceptions.html

all exceptions must be instances of a class that derives from BaseException

https://docs.python.org/3/library/exceptions.html

BaseException