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

exception SyntaxError Raised when the parser encounters a syntax error. This may occur in an import statement,

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

exception RuntimeError Raised when an error is detected that doesn’t fall in any of the other categories. The associated value

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

exception UnicodeTranslateError Raised when a Unicode-related error occurs during translating. It is a subclass of UnicodeError

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

exception TypeError Raised when an operation or function is applied to an object of inappropriate type. The associated value

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

exception Exception All built-in, non-system-exiting exceptions are derived from this class. All user-defined exceptions should

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

exception ChildProcessError Raised when an operation on a child process failed. Corresponds to errno ECHILD

2025-01-10 15:47:30
UnicodeError.reason
  • References/Python/Python/Built-in Exceptions

reason A string describing the specific codec error.

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

exception ConnectionResetError A subclass of ConnectionError, raised when a connection is reset by the peer. Corresponds

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

exception UserWarning Base class for warnings generated by user code.

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

exception StopAsyncIteration Must be raised by __anext__() method of an asynchronous

2025-01-10 15:47:30