Source code for sharepack.errors
"""Typed exceptions raised by the sharepack library."""
[docs]
class SharepackError(Exception):
"""Base class for all sharepack errors."""
[docs]
class ProjectError(SharepackError):
"""The project path is missing or not a directory."""
[docs]
class DetectionError(SharepackError):
"""No supported framework could be detected in the project."""