blob: 8415ccb2fcf79df61b040fa1443fe414e576be45 [file] [log] [blame]
Daryl Walleck1465d612011-11-02 02:22:15 -05001class TimeoutException(Exception):
2 """ Exception on timeout """
3 def __repr__(self):
4 return "Request timed out"
5
6
7class BuildErrorException(Exception):
8 """ Exception on server build """
9 def __repr__(self):
10 return "Server failed into error status"