View Javadoc

1   /*
2    *  Copyright 2006 the GLXDesktop Project Team, all rights reserved.
3    *  
4    *  This file is part of GLXDesktop Project.
5    *  GLXDesktop Project is free software; you can redistribute it and/or modify
6    *  it under the terms of the GNU General Public License as published by
7    *  the Free Software Foundation; either version 2 of the License.
8    *  3ddesktop-configurator is distributed in the hope that it will be useful,
9    *  but WITHOUT ANY WARRANTY; without even the implied warranty of
10   *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11   *  GNU General Public License for more details.
12   *  You should have received a copy of the GNU General Public License
13   *  along with GLXDesktop Project; if not, write to the Free Software
14   *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
15   */
16  
17  package net.sf.glxdesktop.gui.glade;
18  
19  public class LoadGladeException extends Exception{
20  	
21  	private static final long serialVersionUID = 1L;
22  	
23  	/***
24  	 * @param message
25  	 */
26  	public LoadGladeException(String message) {
27  		super(message);
28  	}
29  	
30  	/***
31  	 * @param message
32  	 * @param cause
33  	 */
34  	public LoadGladeException(String message, Throwable cause) {
35  		super(message, cause);
36  	}
37  }