pycozmo.exception

Exception declarations.

Exceptions

ConnectionTimeout Connection timeout.
InvalidOperation Invalid operation.
NoSpace Out of space.
PyCozmoConnectionError Base class for all PyCozmo connection exceptions.
PyCozmoException Base class for all PyCozmo exceptions.
ResourcesNotFound Cozmo resources not found.
Timeout Operation timed out.
exception pycozmo.exception.PyCozmoException

Bases: Exception

Base class for all PyCozmo exceptions.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pycozmo.exception.PyCozmoConnectionError

Bases: pycozmo.exception.PyCozmoException

Base class for all PyCozmo connection exceptions.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pycozmo.exception.ConnectionTimeout

Bases: pycozmo.exception.PyCozmoConnectionError

Connection timeout.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pycozmo.exception.Timeout

Bases: pycozmo.exception.PyCozmoException

Operation timed out.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception pycozmo.exception.NoSpace

Bases: pycozmo.exception.PyCozmoException

Out of space.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.