blob: 40fd2b55ab461eb9903b9dd7ee4c02c33b3e13a9 [file] [log] [blame]
package com.gemstone.gemfire.mgmt.DataBrowser.controller;
/**
* @author mjha
*
*/
public class InvalidConfigurationException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
public InvalidConfigurationException() {
super();
// TODO Auto-generated constructor stub
}
public InvalidConfigurationException(String arg0, Throwable arg1) {
super(arg0, arg1);
// TODO Auto-generated constructor stub
}
public InvalidConfigurationException(String arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
public InvalidConfigurationException(Throwable arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
}