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:
ExceptionBase 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.PyCozmoExceptionBase 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.PyCozmoConnectionErrorConnection timeout.
-
args¶
-
with_traceback()¶ Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
-
-
exception
pycozmo.exception.Timeout¶ Bases:
pycozmo.exception.PyCozmoExceptionOperation timed out.
-
args¶
-
with_traceback()¶ Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
-
-
exception
pycozmo.exception.NoSpace¶ Bases:
pycozmo.exception.PyCozmoExceptionOut of space.
-
args¶
-
with_traceback()¶ Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
-