Skip to Content
0
Former Member
Dec 08, 2014 at 11:09 AM

error page hosting for error 500 scenario

603 Views

I was implementing the default error 500 handling in webstore.

from storefront web.xml

     <exception-type>java.lang.Exception</exception-type>
     <location>/WEB-INF/pages/error/serverError.jsp</location>
 </error-page>
 <error-page>
     <error-code>500</error-code>
     <location>/WEB-INF/views/desktop/pages/error/**serverError.jsp**</location>
 </error-page>

and found that it is a static HTML page. No Dynamic content is allowed.

can any one guide me how i can implement internationalisation for the same page.

thanks in advance.