What is the difference between Exception and BaseException?
Exception handling
Audio flashcard · 0:14Nortren·
What is the difference between Exception and BaseException?
0:14
BaseException is the root of the exception hierarchy. Exception inherits from it and is the parent of normal errors. SystemExit, KeyboardInterrupt, and GeneratorExit inherit directly from BaseException, not from Exception, so they bypass except Exception clauses.
docs.python.org