Skip to content

Exceptions

CLASS DESCRIPTION
UnreachableBranchError

Exception marking a code branch that should have not been reached.

Classes

UnreachableBranchError

Bases: RuntimeError

Exception marking a code branch that should have not been reached.

Source code in fractal_server/exceptions.py
class UnreachableBranchError(RuntimeError):
    """
    Exception marking a code branch that should have not been reached.
    """

    pass