1 /*
2 * $Id: UnsupportedListenerTypeException.java,v 1.18 2011/06/16 09:29:41 jbmeslin Exp $
3 *
4 */
5 package org.rcfaces.core.internal.listener;
6
7 import javax.faces.FacesException;
8
9 /**
10 *
11 * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
12 * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:41 $
13 */
14 public class UnsupportedListenerTypeException extends FacesException {
15 private static final String REVISION = "$Revision: 1.18 $";
16
17 private static final long serialVersionUID = 2303989217005897745L;
18
19 public UnsupportedListenerTypeException(String listenerType) {
20 super("Listener of type '" + listenerType
21 + "' defined in server side, is not supported !");
22 }
23 }