@@ -144,7 +144,7 @@ public void setBuilder(final HttpSecurity builder)
144144 }
145145
146146 @ Override
147- public void init (final HttpSecurity http ) throws Exception
147+ public void init (final HttpSecurity http )
148148 {
149149 if (this .customizeVaadinSecurityConfigurer != null )
150150 {
@@ -171,7 +171,7 @@ public void init(final HttpSecurity http) throws Exception
171171 }
172172
173173 @ Override
174- public void configure (final HttpSecurity http ) throws Exception
174+ public void configure (final HttpSecurity http )
175175 {
176176 this .vaadinSecurityConfigurer .configure (http );
177177
@@ -182,7 +182,7 @@ public void configure(final HttpSecurity http) throws Exception
182182 }
183183
184184 // region Exception Handling
185- protected void initExceptionHandling (final HttpSecurity http ) throws Exception
185+ protected void initExceptionHandling (final HttpSecurity http )
186186 {
187187 http .exceptionHandling (cfg -> {
188188 this .configureExceptionHandler (cfg );
@@ -213,7 +213,7 @@ protected AccessDeniedHandler createAccessDeniedHandler()
213213 // endregion
214214
215215 // region CSRF
216- protected void initCSRF (final HttpSecurity http ) throws Exception
216+ protected void initCSRF (final HttpSecurity http )
217217 {
218218 final List <RequestMatcher > vaadinCSRFDisableRequestMatchers = this .getApplicationContext ()
219219 .getBeansOfType (VaadinCSRFDisableRequestMatcherProvider .class )
@@ -244,7 +244,7 @@ protected void initCSRF(final HttpSecurity http) throws Exception
244244
245245 // region RequestCache
246246
247- protected void initRequestCache (final HttpSecurity http ) throws Exception
247+ protected void initRequestCache (final HttpSecurity http )
248248 {
249249 final SecureVaadinRequestCache vaadinDefaultRequestCache = Objects .requireNonNull (
250250 this .getApplicationContext ().getBean (SecureVaadinRequestCache .class ),
@@ -260,7 +260,7 @@ protected void initRequestCache(final HttpSecurity http) throws Exception
260260
261261 // region HTTP Requests
262262
263- protected void initAuthorizeHttpRequests (final HttpSecurity http ) throws Exception
263+ protected void initAuthorizeHttpRequests (final HttpSecurity http )
264264 {
265265 http .authorizeHttpRequests (this ::configureAuthorizeHttpRequests );
266266 }
0 commit comments