Skip to content

Class peagen.errors.GitCloneError

peagen.errors.GitCloneError

GitCloneError(url)

Bases: GitOperationError

Raised when cloning a repository fails.

Source code in peagen/errors.py
 97
 98
 99
100
def __init__(self, url: str) -> None:
    super().__init__(
        f"Failed to clone repository '{url}'. Ensure the URL is correct and accessible."
    )