From f1e3563f98a188324121b717818efc8af322b70b Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 1 Mar 2016 17:34:01 -0800 Subject: [PATCH] remove needlessly specific and unused challenge types --- letsencrypt/errors.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/letsencrypt/errors.py b/letsencrypt/errors.py index 4f9e655d8..eb9f8dd0e 100644 --- a/letsencrypt/errors.py +++ b/letsencrypt/errors.py @@ -48,15 +48,6 @@ class FailedChallenges(AuthorizationError): for achall in self.failed_achalls if achall.error is not None)) -class DvAuthError(AuthorizationError): - """Let's Encrypt DV Authenticator error.""" - - -# Authenticator - Challenge specific errors -class TLSSNI01Error(DvAuthError): - """Let's Encrypt TLSSNI01 error.""" - - # Plugin Errors class PluginError(Error): """Let's Encrypt Plugin error."""