diff options
author | Markus Armbruster <armbru@redhat.com> | 2009-12-07 21:37:13 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-07 16:34:36 -0600 |
commit | 7a046f5f14d3de026197dc08c389cd1f23a3dddf (patch) | |
tree | e422dc564c3a3e78d69b93d55a16f8c51f3228c8 /qerror.h | |
parent | 41471a2338522d72955c20179e16cff4d546b32a (diff) |
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.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 } }" |