diff --git a/editor/config_loader.cpp b/editor/config_loader.cpp index 6063f93ce3..beada4f2f5 100644 --- a/editor/config_loader.cpp +++ b/editor/config_loader.cpp @@ -29,7 +29,15 @@ string GetHashFilePath() { return GetPlatform().WritablePathForFile(kHashFileNam string RunSimpleHttpRequest(string const & url) { HTTPClientPlatformWrapper request(url); - auto const result = request.RunHTTPRequest(); + bool result = false; + try + { + result = request.RunHTTPRequest(); + } + catch (runtime_error const & ex) + { + LOG(LWARNING, ("Exception from HTTPClientPlatformWrapper::RunHTTPRequest, message: ", ex.what())); + } if (result && !request.was_redirected() && request.error_code() == 200) // 200 - http status OK { @@ -122,11 +130,26 @@ void ConfigLoader::ResetConfig(pugi::xml_document const & doc) void ConfigLoader::LoadFromLocal(pugi::xml_document & doc) { string content; - auto const reader = GetPlatform().GetReader(kConfigFileName); - reader->ReadAsString(content); + unique_ptr reader; + + try + { + reader = GetPlatform().GetReader(kConfigFileName); + } + catch (RootException const & ex) + { + LOG(LERROR, (ex.Msg())); + return; + } + + if (reader) + reader->ReadAsString(content); if (!doc.load_buffer(content.data(), content.size())) - MYTHROW(ConfigLoadError, ("Can't parse config")); + { + LOG(LERROR, ("Config can not be loaded.")); + doc.reset(); + } } // static diff --git a/editor/config_loader.hpp b/editor/config_loader.hpp index c9ede4a15a..0b445b22e0 100644 --- a/editor/config_loader.hpp +++ b/editor/config_loader.hpp @@ -44,8 +44,6 @@ private: condition_variable m_event; }; -DECLARE_EXCEPTION(ConfigLoadError, RootException); - // Class which loads config from local drive, checks hash // for config on server and downloads new config if needed. class ConfigLoader