Remove print statement from cmdlib
[ganeti-local] / qa / qa_error.py
1 # Copyright (C) 2007 Google Inc.
2 #
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful, but
9 # WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 # 02110-1301, USA.
17
18
19 class Error(Exception):
20   """An error occurred during Q&A testing.
21
22   """
23   pass
24
25
26 class OutOfNodesError(Error):
27   """Out of nodes.
28
29   """
30   pass
31
32
33 class OutOfInstancesError(Error):
34   """Out of instances.
35
36   """
37   pass
38
39
40 class UnusableNodeError(Error):
41   """Unusable node.
42
43   """
44   pass