Restore protected visibility to potentiallyConvertRuntimeException. (#1636)

Closes #1635.
This commit is contained in:
Michael Reiche
2023-01-05 09:35:09 -08:00
committed by mikereiche
parent a5b10d2160
commit 8ab0531dbe

View File

@@ -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;