Source code for flow.utils.exceptions

"""Flow-specific exceptions."""


[docs]class FatalFlowError(Exception): """Exception class for Flow errors which do not allow for continuation.""" def __init__(self, msg): Exception.__init__(self, msg)