1
0
mirror of https://github.com/haiwen/libsearpc.git synced 2025-04-30 03:23:20 +00:00
libsearpc/pysearpc/errors.py

8 lines
164 B
Python
Raw Permalink Normal View History

class NetworkError(Exception):
def __init__(self, msg):
Exception.__init__(self)
self.msg = msg
def __str__(self):
return self.msg