python-hserver/hserver/exceptions.py
2018-03-09 11:50:31 +01:00

14 lines
257 B
Python

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