|  | 
| 16 | 16 | 
 | 
| 17 | 17 | package org.springframework.r2dbc.connection; | 
| 18 | 18 | 
 | 
| 19 |  | -import static org.assertj.core.api.Assertions.assertThat; | 
| 20 |  | - | 
| 21 |  | -import java.util.stream.Stream; | 
| 22 |  | - | 
| 23 |  | -import org.springframework.dao.CannotAcquireLockException; | 
| 24 |  | -import org.springframework.dao.DataAccessResourceFailureException; | 
| 25 |  | -import org.springframework.dao.DataIntegrityViolationException; | 
| 26 |  | -import org.springframework.dao.DuplicateKeyException; | 
| 27 |  | -import org.springframework.dao.PermissionDeniedDataAccessException; | 
| 28 |  | -import org.springframework.dao.PessimisticLockingFailureException; | 
| 29 |  | -import org.springframework.dao.QueryTimeoutException; | 
| 30 |  | -import org.springframework.dao.TransientDataAccessResourceException; | 
| 31 |  | -import org.springframework.r2dbc.BadSqlGrammarException; | 
| 32 |  | -import org.springframework.r2dbc.UncategorizedR2dbcException; | 
| 33 |  | - | 
| 34 | 19 | import io.r2dbc.spi.R2dbcBadGrammarException; | 
| 35 | 20 | import io.r2dbc.spi.R2dbcDataIntegrityViolationException; | 
| 36 | 21 | import io.r2dbc.spi.R2dbcException; | 
|  | 
| 43 | 28 | import org.junit.jupiter.params.ParameterizedTest; | 
| 44 | 29 | import org.junit.jupiter.params.provider.Arguments; | 
| 45 | 30 | import org.junit.jupiter.params.provider.MethodSource; | 
|  | 31 | +import org.springframework.dao.CannotAcquireLockException; | 
|  | 32 | +import org.springframework.dao.DataAccessResourceFailureException; | 
|  | 33 | +import org.springframework.dao.DataIntegrityViolationException; | 
|  | 34 | +import org.springframework.dao.DuplicateKeyException; | 
|  | 35 | +import org.springframework.dao.PermissionDeniedDataAccessException; | 
|  | 36 | +import org.springframework.dao.PessimisticLockingFailureException; | 
|  | 37 | +import org.springframework.dao.QueryTimeoutException; | 
|  | 38 | +import org.springframework.dao.TransientDataAccessResourceException; | 
|  | 39 | +import org.springframework.r2dbc.BadSqlGrammarException; | 
|  | 40 | +import org.springframework.r2dbc.UncategorizedR2dbcException; | 
|  | 41 | + | 
|  | 42 | +import java.util.stream.Stream; | 
|  | 43 | + | 
|  | 44 | +import static org.assertj.core.api.Assertions.assertThat; | 
|  | 45 | + | 
|  | 46 | + | 
| 46 | 47 | 
 | 
| 47 | 48 | /** | 
| 48 | 49 |  * Tests for {@link ConnectionFactoryUtils}. | 
|  | 
0 commit comments