if (file.exists() == false) {
_logger.log(Level.WARNING, storeName
+ ": Cannot update timsestamp for: " + sessionKey
+ "; File does not exist");
} else {
throw new SFSBStoreManagerException(
storeName + ": Cannot update timsestamp for: " + sessionKey);
}
}
} catch (SFSBStoreManagerException sfsbSMEx) {
throw sfsbSMEx;
} catch (Exception ex) {
_logger.log(Level.WARNING, storeName
+ ": Exception while updating timestamp", ex);
throw new SFSBStoreManagerException(
"Cannot update timsestamp for: " + sessionKey
+ "; Got exception: " + ex);
}
}