MCPcopy Create free account
hub / github.com/ActiveState/code / AsyncException

Class AsyncException

recipes/Python/577662_ASIO/recipe-577662.py:20–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18'''
19
20class 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
29class AsyncSocket(object):
30

Callers 4

asyncConnectMethod · 0.85
asyncAcceptMethod · 0.85
asyncReadMethod · 0.85
asyncWriteAllMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected