mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
14 lines
328 B
Python
14 lines
328 B
Python
"""Let's Encrypt client errors."""
|
|
|
|
|
|
class LetsEncryptClientError(Exception):
|
|
"""Generic Let's Encrypt client error."""
|
|
|
|
|
|
class LetsEncryptConfiguratorError(LetsEncryptClientError):
|
|
"""Let's Encrypt configurator error."""
|
|
|
|
|
|
class LetsEncryptDvsniError(LetsEncryptConfiguratorError):
|
|
"""Let's Encrypt DVSNI error."""
|