xiaodongwang 7f080e4e51 fix pep8 warning and move major util code from bin to compass dir.
Change-Id: I7baa536888db1ca46cadcdf07ef9cc0a1a3a12fb
2014-02-19 22:25:45 -08:00

13 lines
266 B
Python

"""hdsdiscovery module errors"""
class TimeoutError(Exception):
"""Timeout error."""
def __init__(self, message):
super(TimeoutError, self).__init__(message)
self.message = message
def __str__(self):
return repr(self.message)