View Javadoc

1   /*
2    * Created on Dec 9, 2004 by Justin Sher
3    *
4    *  ginp - Java Web Application for Viewing Photo Collections
5    *
6    *  This library is free software; you can redistribute it and/or
7    *  modify it under the terms of the GNU Lesser General Public
8    *  License as published by the Free Software Foundation; either
9    *  version 2.1 of the License, or any later version.
10   *
11   *  This library is distributed in the hope that it will be useful,
12   *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13   *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14   *  Lesser General Public License for more details.
15   *
16   *  You should have received a copy of the GNU Lesser General Public
17   *  License along with this library; if not, write to the Free Software
18   *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
19   */
20  package net.sf.ginp.setup;
21  
22  /**
23   * If something goes wrong during a setup procedure
24   * 
25   * @author Justin Sher
26   */
27  public class SetupException extends Exception {
28  
29  	/**
30  	 * 
31  	 */
32  	private static final long serialVersionUID = -6067816256096888172L;
33  	/**
34  	 * Default Constructor
35  	 */
36  	public SetupException() {
37  		super();
38  	}
39  	/**
40  	 * @param arg0 message
41  	 */
42  	public SetupException(String arg0) {
43  		super(arg0);
44  	}
45  	/**
46  	 * @param arg0 message
47  	 * @param arg1 exception
48  	 */
49  	public SetupException(String arg0, Throwable arg1) {
50  		super(arg0, arg1);
51  	}
52  	/**
53  	 * @param arg0 a throwable
54  	 */
55  	public SetupException(Throwable arg0) {
56  		super(arg0);
57  	}
58  }