This content has been marked as final. 
    
Show                 2 replies
    
- 
        
1. Re: How do I deal with exceptions when using the SAF?
gavin.king Nov 15, 2006 4:58 PM (in response to ccanning)You can do stuff like:
public String persist() { if ( ..... ) { return super.persist(); } else { FacesMessages.instance().add("can't persist"); return null; } }
Is that OK? - 
        
2. Re: How do I deal with exceptions when using the SAF?
ccanning Nov 15, 2006 6:08 PM (in response to ccanning)Thanks. That was what I was using while waiting for an answer.