The base class of all built-in exceptions. Application code should not catch this directly; catch Exception instead, as BaseException also includes SystemExit, KeyboardInterrupt, and GeneratorExit.
BaseException
python The base class of all built-in exceptions. Application code should not catch this directly; catch Exception instead, as BaseException also includes SystemExit, KeyboardInterrupt, and GeneratorExit.