Fix cli.PollJob
[ganeti-local] / lib / rapi / httperror.py
1 #
2 #
3
4 # Copyright (C) 2006, 2007, 2008 Google Inc.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21
22 """HTTP errors.
23
24 """
25
26
27 class HTTPException(Exception):
28   code = None
29   message = None
30
31   def __init__(self, message=None):
32     if message is not None:
33       self.message = message
34
35
36 class HTTPBadRequest(HTTPException):
37   code = 400
38
39
40 class HTTPNotFound(HTTPException):
41   code = 404
42
43
44 class HTTPInternalError(HTTPException):
45   code = 500
46
47
48 class HTTPServiceUnavailable(HTTPException):
49   code = 503