March 2018
Intermediate to advanced
324 pages
8h 30m
English
The implementation can be as simple as adding a try/catch block:
public boolean saveMove(TicTacToeBean bean) {
try {
getMongoCollection().save(bean);
return true;
} catch (Exception e) {
return false;
}
}
Read now
Unlock full access