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.