| 18 | ''' |
| 19 | |
| 20 | class AsyncException(Exception): |
| 21 | |
| 22 | def __init__(self, value): |
| 23 | super(AsyncException, self).__init__() |
| 24 | self.__value = value |
| 25 | |
| 26 | def __str__(self): |
| 27 | return repr(self.__value) |
| 28 | |
| 29 | class AsyncSocket(object): |
| 30 |
no outgoing calls
no test coverage detected