Change-Id: I0be92c7eff056d124732a48c8cbfe7304ede2dde
* @return The error's message
*
* @see #tizen_error_e
+ *
+ * @code
+ *
+ * char* errMsg;
+ * location_manager_h location_handle;
+ * int result = location_manager_create(LOCATION_METHOD_GPS, &location_handle);
+ *
+ * if (LOCATIONS_ERROR_NONE != result)
+ * {
+ * errMsg = get_error_message(result);
+ * dlog_print(DLOG_INFO, "MyTag", "%s", errMsg);
+ * }
+ *
+ * @endcode
+ *
*/
char *get_error_message(int err);