mirror of
https://github.com/certbot/certbot.git
synced 2026-01-21 19:01:07 +03:00
9 lines
234 B
Python
9 lines
234 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."""
|