blob: c75544c7a4a592e61142898b9f58386a22494ce0 [file] [log] [blame]
Daryl Walleck1465d612011-11-02 02:22:15 -05001class TimeoutException(Exception):
Daryl Wallecke5b83d42011-11-10 14:39:02 -06002 """Exception on timeout"""
Daryl Walleck1465d612011-11-02 02:22:15 -05003 def __repr__(self):
4 return "Request timed out"
5
6
7class BuildErrorException(Exception):
Daryl Wallecke5b83d42011-11-10 14:39:02 -06008 """Exception on server build"""
Daryl Walleck1465d612011-11-02 02:22:15 -05009 def __repr__(self):
10 return "Server failed into error status"