Source code for pubtools._quay.exceptions

[docs]class ManifestTypeError(Exception): """Occurs when an incorrect manifest type is encountered."""
[docs]class RegistryAuthError(Exception): """Occurs when registry authentication encounters an issue."""
[docs]class BadPushItem(Exception): """Occurs when a bad push item is being processed."""
[docs]class InvalidTargetSettings(Exception): """Occurs when required target setting is missing or has an incorrect value."""
[docs]class InvalidRepository(Exception): """Occurs when a repository hasn't passed its validation checks."""
[docs]class SigningError(Exception): """Occurs when there was an issue in the container signing process done by RADAS."""
class ManifestNotFoundError(Exception): """Occurs when manifest is not found on the server."""