My JSF Books/Videos My JSF Tutorials OmniFaces/JSF PPTs
JSF 2.3 Tutorial
JSF Caching Tutorial
JSF Navigation Tutorial
JSF Scopes Tutorial
JSF Page Author Beginner's Guide
OmniFaces 2.3 Tutorial Examples
OmniFaces 2.2 Tutorial Examples
JSF Events Tutorial
OmniFaces Callbacks Usages
JSF State Tutorial
JSF and Design Patterns
JSF 2.3 New Features (2.3-m04)
Introduction to OmniFaces
25+ Reasons to use OmniFaces in JSF
OmniFaces Validators
OmniFaces Converters
JSF Design Patterns
Mastering OmniFaces
Reusable and less-verbose JSF code

My JSF Resources ...

Java EE Guardian
Member of JCG Program
Member MVB DZone
Blog curated on ZEEF
OmniFaces is an utility library for JSF, including PrimeFaces, RichFaces, ICEfaces ...

.

.

.

.

.

.

.

.


[OmniFaces Utilities] - Find the right JSF OmniFaces 2 utilities methods/functions

Search on blog

Petition by Java EE Guardians

Twitter

marți, 3 martie 2015

[OmniFaces utilities (2.3/2.1/2.0)] Unwrap the nested causes of given exception


[OmniFaces utilities] The unwrap() method unwraps the nested causes of given exception as long as until it is not an instance of the given type and then return it. If the given exception is already not an instance of the given type, then it will directly be returned. Or if the exception, unwrapped or not, does not have a nested cause anymore, then it will be returned. This is particularly useful if you want to unwrap the real root cause out of a nested hierarchy of ServletException or FacesException.

Method:

OmniFaces 2.3 implementation (improve Exceptions#unwrap() to take varargs)

OmniFaces 2.1 implementation:

OmniFaces 2.0 implementation:
Note This is particularly useful if you want to unwrap the real root cause out of a nested hierarchy of ServletException or FacesException.

Usage:

Example 1 - this is copy-pasted from OmniFaces documentation

try{
   //...
   } catch (FacesException e) {
      Exception realRootCause = Exceptions.unwrap(e, FacesException.class);
      // ...
   }

Example 2 - unwrap ServletException

try{
   //...
   } catch (ServletException e) {
      Exception realRootCause = Exceptions.unwrap(e, ServletException.class);
      // ...
   }

Niciun comentariu :

Trimiteți un comentariu

JSF BOOKS COLLECTION

Postări populare

OmniFaces/JSF Fans

Visitors Starting 4 September 2015

Locations of Site Visitors