Restore protected visibility to potentiallyConvertRuntimeException. (#1636)
Closes #1635.
This commit is contained in:
committed by
mikereiche
parent
a5b10d2160
commit
8ab0531dbe
@@ -223,7 +223,7 @@ public class ReactiveCouchbaseTemplate implements ReactiveCouchbaseOperations, A
|
||||
*
|
||||
* @param ex the exception to translate
|
||||
*/
|
||||
RuntimeException potentiallyConvertRuntimeException(final RuntimeException ex) {
|
||||
protected RuntimeException potentiallyConvertRuntimeException(final RuntimeException ex) {
|
||||
RuntimeException resolved = exceptionTranslator != null ? exceptionTranslator.translateExceptionIfPossible(ex)
|
||||
: null;
|
||||
return resolved == null ? ex : resolved;
|
||||
|
||||
Reference in New Issue
Block a user