Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mark Paluch opened DATACASS-304 and commented
CqlTemplate.doExecute catches Spring's DataAccessException and so it does not translate Cassandra's RuntimeException's.
CqlTemplate.doExecute
DataAccessException
RuntimeException
protected <T> T doExecute(SessionCallback<T> callback) { Assert.notNull(callback); try { return callback.doInSession(getSession()); } catch (DataAccessException e) { throw translateExceptionIfPossible(e); } }
Affects: 1.4.1 (Hopper SR1)
Referenced from: commits 570d71a
The text was updated successfully, but these errors were encountered:
jxblum
No branches or pull requests
Mark Paluch opened DATACASS-304 and commented
CqlTemplate.doExecute
catches Spring'sDataAccessException
and so it does not translate Cassandra'sRuntimeException
's.Affects: 1.4.1 (Hopper SR1)
Referenced from: commits 570d71a
The text was updated successfully, but these errors were encountered: