exopy.tasks.tasks.logic.loop_exceptions module

Exceptions used to interact with looping tasks.

exception exopy.tasks.tasks.logic.loop_exceptions.LoopException[source]

Bases: BaseException

Base exception used for control flows in tasks.

exception exopy.tasks.tasks.logic.loop_exceptions.BreakException[source]

Bases: exopy.tasks.tasks.logic.loop_exceptions.LoopException

Exception used to signal a looping task it should break.

exception exopy.tasks.tasks.logic.loop_exceptions.ContinueException[source]

Bases: exopy.tasks.tasks.logic.loop_exceptions.LoopException

Exception used to signal a looping task it should continue.