exc.py 645 B

1234567891011121314151617181920212223
  1. class IterationNodeError(ValueError):
  2. """Base class for iteration node errors."""
  3. class IteratorVariableNotFoundError(IterationNodeError):
  4. """Raised when the iterator variable is not found."""
  5. class InvalidIteratorValueError(IterationNodeError):
  6. """Raised when the iterator value is invalid."""
  7. class StartNodeIdNotFoundError(IterationNodeError):
  8. """Raised when the start node ID is not found."""
  9. class IterationGraphNotFoundError(IterationNodeError):
  10. """Raised when the iteration graph is not found."""
  11. class IterationIndexNotFoundError(IterationNodeError):
  12. """Raised when the iteration index is not found."""