diff mbox

[2/4] add QERR_BASE_ID_NOT_FOUND

Message ID 20120104140945.411873214@redhat.com
State New
Headers show

Commit Message

Marcelo Tosatti Jan. 4, 2012, 2:08 p.m. UTC
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
diff mbox

Patch

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 */