[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
[docs]class NoSuchPluginError(OctoException):
"""Raised when an action is to be performed on a plugin that cannot be found"""
pass