View Javadoc

1   package net.sf.jasperreports.jsf.renderkit;
2   
3   import net.sf.jasperreports.jsf.JRFacesException;
4   
5   public final class UnsupportedExporterException extends JRFacesException {
6   
7   	/**
8   	 * 
9   	 */
10  	private static final long serialVersionUID = 1481743856063619890L;
11  
12  	public UnsupportedExporterException(String exporterType) {
13  		super(exporterType);
14  	}
15  	
16  }