| 111 | return ValueError('Unrecognized message type {!r}'.format(kind)) |
| 112 | |
| 113 | class RemoteError(Exception): |
| 114 | def __str__(self): |
| 115 | return ('\n' + '-'*75 + '\n' + str(self.args[0]) + '-'*75) |
| 116 | |
| 117 | # |
| 118 | # Functions for finding the method names of an object |