Re: [Knobot-devel] knobot failsaveness
Status: Beta
Brought to you by:
rebach
|
From: <re...@gm...> - 2007-03-26 10:29:06
|
dbu wrote:
> in order to improve user experience in case of failures, it would be=20
> nice if an error page could be displayed.
> when an error occurs, at the moment all visitors to the page just get a=
=20
> blank page. i guess this would have to happen in=20
> org.wymiwyg.rwcf.tools.xslt.XSLTResponseWrapper at line 224?
>
> any objections if i do this?
> =20
as long as I don't have tto write a documentation for the RWCF exception
handling mechanisms, go ahead!
from rwcf/src/META_INF/rwcf/ModelSection.rdf:
<rwcf:ExceptionHandler
rwcf:javaClass=3D"org.wymiwyg.rwcf.impl.exceptionhandlers.HandlerExceptio=
nHandler"
rwcf:exceptionClass=3D"java.lang.Exception">
</rwcf:ExceptionHandler>
from rwcf-tools/notfound/src/META-INF/rwcf/nf-section.rdf:
<rwcf:ExceptionHandler
rwcf:javaClass=3D"org.wymiwyg.rwcf.tools.notfound.NotFoundExceptionHandle=
r"
=20
rwcf:exceptionClass=3D"org.wymiwyg.rwcf.tools.notfound.NotFoundException"=
>
</rwcf:ExceptionHandler>
|