1
0
mirror of https://github.com/haiwen/libsearpc.git synced 2025-04-29 19:13:19 +00:00
libsearpc/pysearpc/common.py

8 lines
131 B
Python
Raw Permalink Normal View History

2012-10-09 01:48:15 +00:00
class SearpcError(Exception):
def __init__(self, msg):
self.msg = msg
def __str__(self):
return self.msg