Source code for rhodes.exceptions

"""Exceptions for use in Rhodes."""


[docs]class RhodesError(Exception): """Common base for all Rhodes exceptions."""
[docs]class IncompleteDefinitionError(RhodesError): """Raise when an incomplete state machine definition is found."""
[docs]class InvalidDefinitionError(RhodesError): """Raised when an invalid state machine definition is found."""