Hi every one
I have these exceptions declared in my selectors
<exception class="....ResourceNotFoundException" name="not-found"/>
<exception class="....InvalidContinuationException"
name="invalid-continuation"/>
<exception class="java.lang.Throwable" unroll="true"/>
All these errors are well handled by the error-handler but when an XSL error
occurs I still get the error and not my handle error page??
are there any other selectors to be added?
Do I have to declare other exception Selectors?
Thanks
Tibor
*****************************
my error- handler
<map:handle-errors>
<map:select type="exception">
<map:when test="not-found">
<map:generate type="jx" src="public/error.xml">
<map:parameter name="type" value="error_resourcenotfound"/>
<map:parameter name="cpath" value="{request:contextPath}"/>
</map:generate>
<map:call resource="xslt_i18n_xhtml"/>
</map:when>
<map:when test="invalid-continuation">
<map:generate type="jx" src="public/error.xml">
<map:parameter name="type" value="error_invalidContinuation"/>
<map:parameter name="cpath" value="{request:contextPath}"/>
</map:generate>
<map:call resource="xslt_i18n_xhtml"/>
</map:when>
<map:otherwise>
<map:generate type="jx" src="public/error.xml">
<map:parameter name="type" value="error_unknown"/>
<map:parameter name="cpath" value="{request:contextPath}"/>
</map:generate>
<map:call resource="xslt_i18n_xhtml"/>
</map:otherwise>
</map:select>
</map:handle-errors>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]