} catch (const PrivilegeInfo::Exception::Base &e) {
LogError("Error while getting privilege information: " << e.DumpToString());
return SECURITY_MANAGER_ERROR_SERVER_ERROR;
+ } catch (const TizenPlatformConfig::Exception::Base &e) {
+ LogError("Error while adding user: " << e.DumpToString());
+ return SECURITY_MANAGER_ERROR_SERVER_ERROR;
} catch (const std::exception &e) {
LogError("Memory allocation error while adding user: " << e.what());
return SECURITY_MANAGER_ERROR_SERVER_ERROR;
} catch (const PermissibleSet::PermissibleSetException::FileRemoveError &e) {
LogError("Error while removing user: " << e.DumpToString());
return SECURITY_MANAGER_ERROR_FILE_DELETE_FAILED;
+ } catch (const TizenPlatformConfig::Exception::Base &e) {
+ LogError("Error while adding user: " << e.DumpToString());
+ return SECURITY_MANAGER_ERROR_SERVER_ERROR;
} catch (const std::exception &e) {
LogError("Memory allocation error while deleting user: " << e.what());
return SECURITY_MANAGER_ERROR_SERVER_ERROR;