1
0
mirror of https://github.com/haiwen/ccnet-server.git synced 2025-09-01 04:47:00 +00:00
Files
ccnet-server/python/ccnet/errors.py

8 lines
164 B
Python
Raw Permalink Normal View History

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