| Issue 27: | change specifications of the game | |
| 1 person starred this issue and may be notified of changes. | Back to list |
|
added throws GameException to prevent duplicate game ids
/**
* adds a game to the list
* @param game
* @return true if the game has been added, false otherwise
* @throws GameException if the game identifier is used before
*/
boolean addGame(Game game) throws GameException;
|
||||||||||