View Javadoc

1   /*
2    * $Id: IErrorListener.java,v 1.1 2007/01/24 21:34:05 oeuillot Exp $
3    * 
4    */
5   package org.rcfaces.core.event;
6   
7   import javax.faces.event.AbortProcessingException;
8   import javax.faces.event.FacesListener;
9   
10  /**
11   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
12   * @version $Revision: 1.1 $ $Date: 2007/01/24 21:34:05 $
13   */
14  public interface IErrorListener extends FacesListener {
15  
16      void processError(ErrorEvent event) throws AbortProcessingException;
17  }