1
0
mirror of https://github.com/haiwen/ccnet-server.git synced 2025-06-25 13:11:35 +00:00
ccnet-server/python/ccnet/errors.py

8 lines
164 B
Python
Raw Normal View History

2016-08-18 09:39:55 +00:00
class NetworkError(Exception):
def __init__(self, msg):
Exception.__init__(self)
self.msg = msg
def __str__(self):
return self.msg