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