File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/com/ksoot/problem/spring/boot/autoconfigure/webflux Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 16
16
import org .springframework .http .ProblemDetail ;
17
17
import org .springframework .http .ResponseEntity ;
18
18
import org .springframework .web .bind .annotation .ControllerAdvice ;
19
- import org .springframework .web .context . request . NativeWebRequest ;
19
+ import org .springframework .web .server . ServerWebExchange ;
20
20
21
21
/**
22
22
* @author Rajveer Singh
33
33
@ Order (Ordered .HIGHEST_PRECEDENCE )
34
34
@ ControllerAdvice
35
35
public class WebFluxDaoExceptionHandler
36
- extends AbstractDaoExceptionHandler <NativeWebRequest , ResponseEntity <ProblemDetail >> {
36
+ extends AbstractDaoExceptionHandler <ServerWebExchange , ResponseEntity <ProblemDetail >> {
37
37
38
38
WebFluxDaoExceptionHandler (
39
39
final List <ConstraintNameResolver > constraintNameResolvers , final Environment env ) {
You can’t perform that action at this time.
0 commit comments