(self, message="Connection failed", socket_path=None)
| 90 | """Raised when connection to dirty arbiter fails.""" |
| 91 | |
| 92 | def __init__(self, message="Connection failed", socket_path=None): |
| 93 | details = {"socket_path": socket_path} if socket_path else {} |
| 94 | super().__init__(message, details) |
| 95 | self.socket_path = socket_path |
| 96 | |
| 97 | |
| 98 | class DirtyWorkerError(DirtyError): |