python-hserver/hserver/exceptions.py

14 lines
257 B
Python
Raw Normal View History

2018-03-09 11:50:31 +01:00
class HServerException(Exception):
pass
class FinishRequestException(HServerException):
pass
class HttpException(HServerException):
def __init__(self,status,message):
HServerException.__init__(self)
self.status = status
self.message = message