Source code for octo.exceptions
[docs]class OctoException(Exception):
pass
[docs]class NotStartedError(OctoException):
"""Raised when trying to call octo.stop before octo.start"""
pass
[docs]class AlreadyStartedError(OctoException):
"""Raised when trying to call octo.start more than once"""
pass