(self, exc, value)
| 82 | safely sent through the socket.""" |
| 83 | |
| 84 | def __init__(self, exc, value): |
| 85 | self.exc = repr(exc) |
| 86 | self.value = repr(value) |
| 87 | super(MaybeEncodingError, self).__init__(self.exc, self.value) |
| 88 | |
| 89 | def __str__(self): |
| 90 | return "Error sending result: '%s'. Reason: '%s'" % (self.value, |