Fix exception type in settings.ini reading.

This commit is contained in:
vng 2012-03-26 17:44:14 +03:00 committed by Alex Zolotarev
parent 743e239614
commit fa4ec15660

View file

@ -44,7 +44,7 @@ namespace Settings
m_values[key] = value;
}
}
catch (Reader::Exception const & e)
catch (RootException const & e)
{
LOG(LWARNING, ("Can't load", SETTINGS_FILE_NAME));
}
@ -65,7 +65,7 @@ namespace Settings
file.Write(line.data(), line.size());
}
}
catch (Writer::Exception const &)
catch (RootException const &)
{
// Ignore all settings saving exceptions
LOG(LWARNING, ("Can't save", SETTINGS_FILE_NAME));