errors.LetsEncrypt -> errors. (fixes: #487)

This commit is contained in:
Jakub Warmuz
2015-06-22 22:41:24 +00:00
parent 655331c9cf
commit cfa7e28106
30 changed files with 147 additions and 147 deletions
+10 -10
View File
@@ -1,44 +1,44 @@
"""Let's Encrypt client errors."""
class LetsEncryptClientError(Exception):
class Error(Exception):
"""Generic Let's Encrypt client error."""
class LetsEncryptReverterError(LetsEncryptClientError):
class ReverterError(Error):
"""Let's Encrypt Reverter error."""
# Auth Handler Errors
class AuthorizationError(LetsEncryptClientError):
class AuthorizationError(Error):
"""Authorization error."""
class LetsEncryptContAuthError(AuthorizationError):
class ContAuthError(AuthorizationError):
"""Let's Encrypt Continuity Authenticator error."""
class LetsEncryptDvAuthError(AuthorizationError):
class DvAuthError(AuthorizationError):
"""Let's Encrypt DV Authenticator error."""
# Authenticator - Challenge specific errors
class LetsEncryptDvsniError(LetsEncryptDvAuthError):
class DvsniError(DvAuthError):
"""Let's Encrypt DVSNI error."""
# Configurator Errors
class LetsEncryptConfiguratorError(LetsEncryptClientError):
class ConfiguratorError(Error):
"""Let's Encrypt Configurator error."""
class LetsEncryptNoInstallationError(LetsEncryptConfiguratorError):
class NoInstallationError(ConfiguratorError):
"""Let's Encrypt No Installation error."""
class LetsEncryptMisconfigurationError(LetsEncryptConfiguratorError):
class MisconfigurationError(ConfiguratorError):
"""Let's Encrypt Misconfiguration error."""
class LetsEncryptRevokerError(LetsEncryptClientError):
class RevokerError(Error):
"""Let's Encrypt Revoker error."""