diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2012-03-28 14:01:15 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2012-06-04 13:49:34 -0300 |
commit | 8ff15d4a2dec25167013d222f1c4aaef8595e02e (patch) | |
tree | 75bc0ec162eb077cca9f9a79b6f5344c92e8a3fa /qerror.h | |
parent | 4e89978e2021c0431aad9898823eb9d3526e9018 (diff) | |
download | qemu-8ff15d4a2dec25167013d222f1c4aaef8595e02e.tar.gz qemu-8ff15d4a2dec25167013d222f1c4aaef8595e02e.tar.bz2 qemu-8ff15d4a2dec25167013d222f1c4aaef8595e02e.zip |
qerror: introduce QERR_INVALID_OPTION_GROUP
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Reviewed-By: Laszlo Ersek <lersek@redhat.com>
Diffstat (limited to 'qerror.h')
-rw-r--r-- | qerror.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -139,6 +139,9 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_INVALID_BLOCK_FORMAT \ "{ 'class': 'InvalidBlockFormat', 'data': { 'name': %s } }" +#define QERR_INVALID_OPTION_GROUP \ + "{ 'class': 'InvalidOptionGroup', 'data': { 'group': %s } }" + #define QERR_INVALID_PARAMETER \ "{ 'class': 'InvalidParameter', 'data': { 'name': %s } }" |