Advertisement
Guest User

Untitled

a guest
Aug 5th, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
  2. try {
  3. doFilter((HttpServletRequest)request, (HttpServletResponse)response, chain);
  4. } catch (ClassCastException e) {
  5. throw new ServletException("non-HTTP request or response");
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement