Source code for fsm.exceptions

__all__ = ["InvalidTransition"]


[docs]class InvalidTransition(Exception): """Moving from an state to another is not possible.""" pass