2014-11-21 13:10:33 -05:00
|
|
|
"""Let's Encrypt client errors."""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class LetsEncryptClientError(Exception):
|
|
|
|
|
"""Generic Let's Encrypt client error."""
|
2014-11-29 19:05:18 -05:00
|
|
|
|
|
|
|
|
|
2015-01-10 08:19:22 -05:00
|
|
|
class LetsEncryptAuthHandlerError(LetsEncryptClientError):
|
|
|
|
|
"""Let's Encrypt Auth Handler error."""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class LetsEncryptClientAuthError(LetsEncryptAuthHandlerError):
|
|
|
|
|
"""Let's Encrypt Client Authenticator Error."""
|
|
|
|
|
|
|
|
|
|
|
2014-12-03 07:31:01 -05:00
|
|
|
class LetsEncryptConfiguratorError(LetsEncryptClientError):
|
2015-01-10 08:19:22 -05:00
|
|
|
"""Let's Encrypt Configurator error."""
|
2014-12-03 07:31:01 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class LetsEncryptDvsniError(LetsEncryptConfiguratorError):
|
2014-11-29 19:05:18 -05:00
|
|
|
"""Let's Encrypt DVSNI error."""
|