mirror of
https://github.com/haiwen/libsearpc.git
synced 2025-04-29 19:13:19 +00:00
8 lines
131 B
Python
8 lines
131 B
Python
|
class SearpcError(Exception):
|
||
|
|
||
|
def __init__(self, msg):
|
||
|
self.msg = msg
|
||
|
|
||
|
def __str__(self):
|
||
|
return self.msg
|