From: Marcelo Tosatti <mtosa...@redhat.com> Signed-off-by: Marcelo Tosatti <mtosa...@redhat.com> Signed-off-by: Stefan Hajnoczi <stefa...@linux.vnet.ibm.com> --- qerror.c | 4 ++++ qerror.h | 3 +++ 2 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/qerror.c b/qerror.c index feb3d35..42f5fc2 100644 --- a/qerror.c +++ b/qerror.c @@ -276,6 +276,10 @@ static const QErrorStringTable qerror_table[] = { .error_fmt = QERR_INVALID_PARAMETER_COMBINATION, .desc = "Invalid parameter combination", }, + { + .error_fmt = QERR_BASE_ID_NOT_FOUND, + .desc = "The base id %(base_id) has not been found", + }, {} }; diff --git a/qerror.h b/qerror.h index 095ba9d..50304c7 100644 --- a/qerror.h +++ b/qerror.h @@ -225,4 +225,7 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_INVALID_PARAMETER_COMBINATION \ "{ 'class': 'InvalidParameterCombination', 'data': {} }" +#define QERR_BASE_ID_NOT_FOUND \ + "{ 'class': 'BaseIdNotFound', 'data': { 'base_id': %s } }" + #endif /* QERROR_H */ -- 1.7.7.3