View Javadoc

1   package net.sf.jlayercheck.util.exceptions;
2   
3   /**
4    * Thrown if configuration contains errors.
5    * 
6    * @author timo 
7    * @author $Author: gunia $
8    * @version $Id: ConfigurationException.java,v 1.2 2007/05/04 06:08:56 gunia Exp $
9    */
10  public class ConfigurationException extends Exception {
11  	/** SUID  */
12  	private static final long serialVersionUID = 5867760385728545393L;
13  	
14  	public ConfigurationException() {
15  		super();
16  	}
17  	
18  	public ConfigurationException(String msg) {
19  		super(msg);
20  	}
21  	
22  	public ConfigurationException(String msg, Throwable cause) {
23  		super(msg, cause);
24  	}
25  	
26  }