Author: tandraschko
Date: Sat Feb 15 19:56:12 2014
New Revision: 1568672
URL: http://svn.apache.org/r1568672
Log:
documentation for JSF exception control
Modified:
deltaspike/site/trunk/content/jsf.mdtext
Modified: deltaspike/site/trunk/content/jsf.mdtext
URL:
http://svn.apache.org/viewvc/deltaspike/site/trunk/content/jsf.mdtext?rev=1568672&r1=1568671&r2=1568672&view=diff
==============================================================================
--- deltaspike/site/trunk/content/jsf.mdtext (original)
+++ deltaspike/site/trunk/content/jsf.mdtext Sat Feb 15 19:56:12 2014
@@ -1270,6 +1270,7 @@ Whenever a unhandled exception occurs wi
{
// ...
+ // no other JSF ExceptionHandler should handle this exception...
event.handled();
}
}
@@ -1288,6 +1289,7 @@ Whenever a unhandled exception occurs wi
// required - "stops" the JSF lifecycle
FacesContext.getCurrentInstance().setResponseComplete();
+ // no other JSF ExceptionHandler should handle this exception...
event.handled();
}
}
@@ -1325,6 +1327,7 @@ This is possible via a CDI qualifier:
// required - "stops" the JSF lifecycle
FacesContext.getCurrentInstance().setResponseComplete();
+ // no other JSF ExceptionHandler should handle this exception...
event.handled();
}
}