@@ -137,15 +137,15 @@ public void doFilter(final ServletRequest request, final ServletResponse respons
137
137
final ExtServletContext servletContext = pr .handler .getContext ();
138
138
final RequestInfo requestInfo = new RequestInfo (pr .servletPath , pr .pathInfo , null , req .getRequestURI (),
139
139
pr .handler .getName (), pr .matchedPattern , pr .matchValue , pr .match , false );
140
-
140
+
141
141
MultipartConfig multipartConfig = pr .handler .getMultipartConfig ();
142
142
HttpServletRequest wrappedRequest ;
143
143
if (multipartConfig ==null ){
144
144
wrappedRequest = new ServletRequestWrapper (req ,
145
145
servletContext ,
146
146
requestInfo ,
147
147
null ,
148
- pr .handler .getServletInfo ().isAsyncSupported ());
148
+ pr .handler .getServletInfo ().isAsyncSupported ());
149
149
}else {
150
150
wrappedRequest = new ServletRequestMultipartWrapper (req ,
151
151
servletContext ,
@@ -174,7 +174,7 @@ public void doFilter(final ServletRequest request, final ServletResponse respons
174
174
}
175
175
SystemLogger .LOGGER .error ("Exception while processing request to " + requestURI , e );
176
176
req .setAttribute (RequestDispatcher .ERROR_EXCEPTION , e );
177
- req .setAttribute (RequestDispatcher .ERROR_EXCEPTION_TYPE , e .getClass (). getName () );
177
+ req .setAttribute (RequestDispatcher .ERROR_EXCEPTION_TYPE , e .getClass ());
178
178
179
179
if ( !wrappedResponse .isCommitted () )
180
180
{
0 commit comments