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

exception GeneratorExit Raised when a generator or coroutine

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

exception FileExistsError Raised when trying to create a file or directory which already exists. Corresponds to errno

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

exception ImportError Raised when an import statement fails to find the module definition or when a from

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
KeyError
  • References/Python/Python/Built-in Exceptions

exception KeyError Raised when a mapping (dictionary) key is not found in the set of existing keys.

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

exception UnicodeWarning Base class for warnings related to Unicode.

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
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
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
UserWarning
  • References/Python/Python/Built-in Exceptions

exception UserWarning Base class for warnings generated by user code.

2025-01-10 15:47:30