OSError.strerror
  • References/Python/Python/Built-in Exceptions

strerror The corresponding error message, as provided by the operating system. It is formatted by the C functions perror()

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

exception UnicodeError Raised when a Unicode-related encoding or decoding error occurs. It is a subclass of ValueError

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

exception FutureWarning Base class for warnings about constructs that will change semantically in the future.

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

exception EnvironmentError

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

exception IndexError Raised when a sequence subscript is out of range. (Slice indices are silently truncated to fall in the

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

exception AssertionError Raised when an assert statement fails.

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

exception TimeoutError Raised when a system function timed out at the system level. Corresponds to errno ETIMEDOUT

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

exception OverflowError Raised when the result of an arithmetic operation is too large to be represented. This cannot occur

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

exception InterruptedError Raised when a system call is interrupted by an incoming signal. Corresponds to errno

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

exception ValueError Raised when a built-in operation or function receives an argument that has the right type but an inappropriate

2025-01-10 15:47:30