1 /*
2 * JaspertReports JSF Plugin Copyright (C) 2011 A. Alonso Dominguez
3 *
4 * This library is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation; either version 2.1 of the License, or (at
7 * your option) any later version. This library is distributed in the hope
8 * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
9 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10 *
11 * See the GNU Lesser General Public License for more details. You should have
12 * received a copy of the GNU Lesser General Public License along with this
13 * library; if not, write to the Free Software Foundation, Inc., 59 Temple
14 * Place, Suite 330, Boston, MA 02111-1307 USA A.
15 *
16 * Alonso Dominguez
17 * alonsoft@users.sf.net
18 */
19 package net.sf.jasperreports.jsf.engine;
20
21 import net.sf.jasperreports.jsf.JRFacesException;
22
23 /**
24 * Root class for filler exceptions.
25 *
26 * @author A. Alonso Dominguez
27 */
28 public class FillerException extends JRFacesException {
29
30 /** The Constant serialVersionUID. */
31 private static final long serialVersionUID = -3240029115273719789L;
32
33 /**
34 * Instantiates a new filler exception.
35 *
36 * @param msg the message.
37 * @param t the cause.
38 */
39 public FillerException(final String msg, final Throwable t) {
40 super(msg, t);
41 }
42
43 /**
44 * Instantiates a new filler exception.
45 *
46 * @param msg the message.
47 */
48 public FillerException(final String msg) {
49 super(msg);
50 }
51
52 /**
53 * Instantiates a new filler exception.
54 *
55 * @param t the cause.
56 */
57 public FillerException(final Throwable t) {
58 super(t);
59 }
60 }