Sho SHIMIZU

Catch a specific exception, not generic Exception

Change-Id: I7e087de452e093b2d7bc3d098847d51b4dff9460
......@@ -102,7 +102,7 @@ public class ConsistentResourceStore implements ResourceStore {
}
tx.commit();
return true;
} catch (Exception e) {
} catch (TransactionException e) {
log.error("Exception thrown, abort the transaction", e);
tx.abort();
return false;
......