LookupErrorLookupError
Base class for errors raised when a key or index is not found (KeyError, IndexError).
ChildProcessErrorA child process operation failed.
An operation on a child process failed. This can happen when waiting for a child process that was already reaped, signaling a non-existent process, or when the OS cannot create the child process.
Check if the child process exists before operating on it. Handle the case where a child process has already exited. Use subprocess.run() or subprocess.Popen() with proper error handling.
LookupErrorBase class for errors raised when a key or index is not found (KeyError, IndexError).
RuntimeErrorA generic runtime error that does not fall into any other category.
FloatingPointErrorA floating point operation failed. Rarely seen unless fpectl is enabled.
PermissionErrorThe operation is not permitted due to insufficient file system permissions.
ValueErrorA function received an argument of the right type but an inappropriate value.
StopAsyncIterationRaised by an async iterator's __anext__() method to signal that iteration is complete.