[docs]class PathNone(Exception):
"""
Raised when a path is None
"""
pass
[docs]class PathNotDir(Exception):
"""
Raised when a path is not a directory
"""
pass
[docs]class PathMissingSplitDir(Exception):
"""
Raised when a path is missing a split directory
"""
pass
[docs]class PathMissingDirinSplitDir(Exception):
"""
Raised when a path is missing a directory in a split directory
"""
pass