View Javadoc

1   /*
2    * $Id: ErrorScriptListener.java,v 1.1 2007/01/24 21:34:07 oeuillot Exp $
3    * 
4    */
5   package org.rcfaces.core.internal.listener;
6   
7   import org.rcfaces.core.event.ErrorEvent;
8   import org.rcfaces.core.event.IErrorListener;
9   
10  /**
11   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
12   * @version $Revision: 1.1 $ $Date: 2007/01/24 21:34:07 $
13   */
14  public class ErrorScriptListener extends AbstractScriptListener implements
15          IErrorListener {
16      private static final String REVISION = "$Revision: 1.1 $";
17  
18      public ErrorScriptListener(String scriptType, String command) {
19          super(scriptType, command);
20      }
21  
22      public ErrorScriptListener() {
23      }
24  
25      public void processError(ErrorEvent event) {
26      }
27  }