Daryl Walleck | 1465d61 | 2011-11-02 02:22:15 -0500 | [diff] [blame] | 1 | class TimeoutException(Exception): |
2 | """ Exception on timeout """ | ||||
3 | def __repr__(self): | ||||
4 | return "Request timed out" | ||||
5 | |||||
6 | |||||
7 | class BuildErrorException(Exception): | ||||
8 | """ Exception on server build """ | ||||
9 | def __repr__(self): | ||||
10 | return "Server failed into error status" |