===================================================================
@@ -254,6 +254,10 @@ static const QErrorStringTable qerror_ta
.error_fmt = QERR_INVALID_PARAMETER_COMBINATION,
.desc = "Invalid paramter combination",
},
+ {
+ .error_fmt = QERR_BASE_ID_NOT_FOUND,
+ .desc = "The base id %(base_id) has not been found",
+ },
{}
};
===================================================================
@@ -210,4 +210,7 @@ QError *qobject_to_qerror(const QObject
#define QERR_INVALID_PARAMETER_COMBINATION \
"{ 'class': 'InvalidParameterCombination', 'data': {} }"
+#define QERR_BASE_ID_NOT_FOUND \
+ "{ 'class': 'BaseIdNotFound', 'data': { 'base_id': %s } }"
+
#endif /* QERROR_H */
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>