PendingDeprecationWarning
  • References/Python/Python/Built-in Exceptions

exception PendingDeprecationWarning Base class for warnings about features which will be deprecated in the future.

2025-01-10 15:47:30
NotImplementedError
  • References/Python/Python/Built-in Exceptions

exception NotImplementedError This exception is derived from RuntimeError. In user defined base classes, abstract

2025-01-10 15:47:30
BufferError
  • References/Python/Python/Built-in Exceptions

exception BufferError Raised when a buffer related operation cannot be performed.

2025-01-10 15:47:30
KeyboardInterrupt
  • References/Python/Python/Built-in Exceptions

exception KeyboardInterrupt Raised when the user hits the interrupt key (normally Control-C or Delete)

2025-01-10 15:47:30
RecursionError
  • References/Python/Python/Built-in Exceptions

exception RecursionError This exception is derived from RuntimeError. It is raised when the interpreter detects

2025-01-10 15:47:30
FloatingPointError
  • References/Python/Python/Built-in Exceptions

exception FloatingPointError Raised when a floating point operation fails. This exception is always defined, but can only be

2025-01-10 15:47:30
SystemExit
  • References/Python/Python/Built-in Exceptions

exception SystemExit This exception is raised by the

2025-01-10 15:47:30
AttributeError
  • References/Python/Python/Built-in Exceptions

exception AttributeError Raised when an attribute reference (see Attribute references) or assignment fails. (When

2025-01-10 15:47:30
IndentationError
  • References/Python/Python/Built-in Exceptions

exception IndentationError Base class for syntax errors related to incorrect indentation. This is a subclass of SyntaxError

2025-01-10 15:47:30
ConnectionRefusedError
  • References/Python/Python/Built-in Exceptions

exception ConnectionRefusedError A subclass of ConnectionError, raised when a connection attempt is refused by

2025-01-10 15:47:30