1
0
mirror of https://github.com/haiwen/libsearpc.git synced 2025-09-07 23:59:20 +00:00

pysearpc: implemented named pipe client (and server, for testing)

This commit is contained in:
Shuai Lin
2018-08-09 17:34:29 +08:00
parent 0bf8150137
commit 13f186c90d
6 changed files with 262 additions and 30 deletions

7
pysearpc/errors.py Normal file
View File

@@ -0,0 +1,7 @@
class NetworkError(Exception):
def __init__(self, msg):
Exception.__init__(self)
self.msg = msg
def __str__(self):
return self.msg