File tree 2 files changed +9
-3
lines changed
src/main/java/com/flowingcode/vaadin/addons/errorwindow
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 129
129
<groupId >javax.annotation</groupId >
130
130
<artifactId >javax.annotation-api</artifactId >
131
131
<version >1.3.2</version >
132
- </dependency >
132
+ </dependency >
133
+ <dependency >
134
+ <groupId >jakarta.annotation</groupId >
135
+ <artifactId >jakarta.annotation-api</artifactId >
136
+ <version >2.1.1</version >
137
+ <optional >true</optional >
138
+ </dependency >
133
139
</dependencies >
134
140
135
141
<build >
Original file line number Diff line number Diff line change 25
25
import com .vaadin .flow .router .ErrorParameter ;
26
26
import com .vaadin .flow .router .HasErrorParameter ;
27
27
import com .vaadin .flow .router .internal .DefaultErrorHandler ;
28
- import javax .annotation .security .PermitAll ;
29
28
import org .apache .http .HttpStatus ;
30
29
31
30
@ SuppressWarnings ("serial" )
32
31
@ DefaultErrorHandler
33
- @ PermitAll
32
+ @ javax .annotation .security .PermitAll
33
+ @ jakarta .annotation .security .PermitAll
34
34
public class ErrorView extends VerticalLayout implements HasErrorParameter <Exception > {
35
35
36
36
@ Override
You can’t perform that action at this time.
0 commit comments