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
1
2
3
4
5
6
class UnreachableBranchError(RuntimeError):
    """
    Exception marking a code branch that should have not been reached.
    """

    pass