Skip to content

Commit 1d6727b

Browse files
authored
Restore protected visibility to potentiallyConvertRuntimeException. (#1636)
Closes #1635.
1 parent d994eb7 commit 1d6727b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/springframework/data/couchbase/core/ReactiveCouchbaseTemplate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public ReactiveTemplateSupport support() {
223223
*
224224
* @param ex the exception to translate
225225
*/
226-
RuntimeException potentiallyConvertRuntimeException(final RuntimeException ex) {
226+
protected RuntimeException potentiallyConvertRuntimeException(final RuntimeException ex) {
227227
RuntimeException resolved = exceptionTranslator != null ? exceptionTranslator.translateExceptionIfPossible(ex)
228228
: null;
229229
return resolved == null ? ex : resolved;

0 commit comments

Comments
 (0)