Renamed megaglest_runtime_error to game_runtime_error

This commit is contained in:
mathusummut
2018-11-02 12:15:57 +01:00
parent 4eb7dc204e
commit 69ab9716da
116 changed files with 1244 additions and 1244 deletions

View File

@@ -80,7 +80,7 @@ namespace Shared {
}
safeMutex.ReleaseLock();
} catch (const std::exception &ex) {
throw megaglest_runtime_error(ex.what());
throw game_runtime_error(ex.what());
}
}
@@ -91,7 +91,7 @@ namespace Shared {
itemCache[cacheKey] = *value;
safeMutex.ReleaseLock();
} catch (const std::exception &ex) {
throw megaglest_runtime_error(ex.what());
throw game_runtime_error(ex.what());
}
}
}