Signed-off-by: Marcelo Tosatti Index: stefanha/qerror.c =================================================================== --- stefanha.orig/qerror.c +++ stefanha/qerror.c @@ -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", + }, {} }; Index: stefanha/qerror.h =================================================================== --- stefanha.orig/qerror.h +++ stefanha/qerror.h @@ -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 */