mirror of
https://github.com/certbot/certbot.git
synced 2026-07-28 08:45:22 +02:00
Standalone 2.0
This commit is contained in:
@@ -80,3 +80,13 @@ class NotSupportedError(PluginError):
|
||||
|
||||
class RevokerError(Error):
|
||||
"""Let's Encrypt Revoker error."""
|
||||
|
||||
|
||||
class StandaloneBindError(Error):
|
||||
"""Standalone plugin bind error."""
|
||||
|
||||
def __init__(self, socket_error, port):
|
||||
super(StandaloneBindError, self).__init__(
|
||||
"Problem binding to port {0}: {1}".format(port, socket_error))
|
||||
self.socket_error = socket_error
|
||||
self.port = port
|
||||
|
||||
Reference in New Issue
Block a user