[2.2] Add E_OBJ_NOT_REGISTERED
authordahyeong.kim <dahyeong.kim@samsung.com>
Wed, 3 Jul 2013 03:09:13 +0000 (12:09 +0900)
committerdahyeong.kim <dahyeong.kim@samsung.com>
Wed, 3 Jul 2013 04:16:39 +0000 (13:16 +0900)
Change-Id: Ia1ab757bd0fcb7395813057ed220a52f500ba494
Signed-off-by: dahyeong.kim <dahyeong.kim@samsung.com>
inc/FBaseErrors.h
src/base/FBaseResult.cpp

index 7b2a53d..5cc0322 100644 (file)
 /** Thrown when OpenGL operation failed. */
 #define E_OPENGL_ERROR                  (ERR_SRC_FRAMEWORK + SET_E_CAUSE(2509))
 
+/** Thrown when the application does not register the log scope or
+ *     registered log scope is not matched with query condition (log type or log provider) specified in Query() API. */
+#define E_OBJ_NOT_REGISTERED           (ERR_SRC_FRAMEWORK + SET_E_CAUSE(2510))
+
 
 //----------------------------------------------------------------------------P
 /** (specialized) Thrown when the requested Bluetooth pairing fails. */
index 254343e..51914f4 100644 (file)
@@ -231,7 +231,8 @@ const char* __errTable2500[] =
        "E_OUT_OF_MEMORY",          //(ERR_SRC_FRAMEWORK + SET_E_CAUSE(2506))
        "E_OUT_OF_RANGE",           //(ERR_SRC_FRAMEWORK + SET_E_CAUSE(2507))
        "E_OVERFLOW",               //(ERR_SRC_FRAMEWORK + SET_E_CAUSE(2508))
-       "E_OPENGL_ERROR"            //(ERR_SRC_FRAMEWORK + SET_E_CAUSE(2509))
+       "E_OPENGL_ERROR",           //(ERR_SRC_FRAMEWORK + SET_E_CAUSE(2509))
+       "E_OBJ_NOT_REGISTERED"      //(ERR_SRC_FRAMEWORK + SET_E_CAUSE(2510))
 };
 
 const char* __errTable2600[] =