Fix checkstyle violation

This commit is contained in:
Rossen Stoyanchev 2019-08-29 15:53:05 +03:00
parent 4e4ec266b2
commit 4f4b9f6b1b
1 changed files with 5 additions and 0 deletions

View File

@ -162,6 +162,11 @@ public class ResourceUrlEncodingFilter extends GenericFilterBean {
}
/**
* Runtime exception to get far enough (to ResourceUrlProviderExposingInterceptor)
* where it can be re-thrown as ServletRequestBindingException to result in
* a 400 response.
*/
@SuppressWarnings("serial")
static class LookupPathIndexException extends IllegalArgumentException {