summaryrefslogtreecommitdiff
path: root/qerror.h
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2009-12-07 21:37:13 +0100
committerAnthony Liguori <aliguori@us.ibm.com>2009-12-07 16:34:36 -0600
commitccf23391e9d91663a1422104644a2ca933e830e6 (patch)
treee422dc564c3a3e78d69b93d55a16f8c51f3228c8 /qerror.h
parentf761fc209dffd83528b78a926194f7d0fab4f322 (diff)
downloadqemu-ccf23391e9d91663a1422104644a2ca933e830e6.tar.gz
qemu-ccf23391e9d91663a1422104644a2ca933e830e6.tar.bz2
qemu-ccf23391e9d91663a1422104644a2ca933e830e6.zip
New QERR_INVALID_PARAMETER
Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qerror.h')
-rw-r--r--qerror.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/qerror.h b/qerror.h
index 2262619a68..48f1ab6b4e 100644
--- a/qerror.h
+++ b/qerror.h
@@ -65,6 +65,9 @@ QError *qobject_to_qerror(const QObject *obj);
#define QERR_INVALID_BLOCK_FORMAT \
"{ 'class': 'InvalidBlockFormat', 'data': { 'name': %s } }"
+#define QERR_INVALID_PARAMETER \
+ "{ 'class': 'invalid_parameter', 'data': { 'name': %s } }"
+
#define QERR_INVALID_PARAMETER_TYPE \
"{ 'class': 'InvalidParameterType', 'data': { 'name': %s,'expected': %s } }"