1
0
mirror of https://github.com/haiwen/libsearpc.git synced 2025-04-27 18:25:06 +00:00
libsearpc/pysearpc/common.py
2013-03-13 20:44:36 +08:00

8 lines
131 B
Python

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