mirror of
https://github.com/certbot/certbot.git
synced 2026-01-23 07:20:55 +03:00
16 lines
354 B
Python
16 lines
354 B
Python
"""ACME errors."""
|
|
from acme.jose import errors as jose_errors
|
|
|
|
|
|
class Error(Exception):
|
|
"""Generic ACME error."""
|
|
|
|
class SchemaValidationError(jose_errors.DeserializationError):
|
|
"""JSON schema ACME object validation error."""
|
|
|
|
class ClientError(Error):
|
|
"""Network error."""
|
|
|
|
class UnexpectedUpdate(ClientError):
|
|
"""Unexpected update."""
|