2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-21 19:22:05 +00:00
2018-02-01 13:36:22 +08:00

10 lines
225 B
Python

#!/usr/bin/env python
class SelfServerException(Exception) :
pass
class SelfClientException(Exception) :
def __init__(self, message, code) :
super(Exception, self).__init__(message)
self.code = code