Hide refresh and add button in MainPage

This commit is contained in:
huangyuhui
2018-03-02 19:22:10 +08:00
parent f826eb224c
commit ba359305f6
4 changed files with 18 additions and 17 deletions

View File

@@ -62,7 +62,7 @@ public class DefaultGameRepository implements GameRepository {
@Override
public Version getVersion(String id) {
if (!hasVersion(id))
throw new VersionNotFoundException("Version '" + id + "' does not exist.");
throw new VersionNotFoundException("Version '" + id + "' does not exist in " + versions.keySet() + ".");
return versions.get(id);
}