Redirecting to different pages based on exception type in JSF1.2
I am trying to show to a special error page for only one of the JSF pages in my application. I tried to throw SpecialException from all the BB methods and entered a error-page mapping with SpecialException entry in web.xml. Still whenever an error occurs, I am redirected to commonerror.xhtml which is associated with javax.faces.Face开发者_开发技巧sException. How to solve this issue?
精彩评论