Skip to content

exceptions

UnreachableBranchError

Bases: RuntimeError

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

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

    pass