package interdroid.swan;
import interdroid.swan.SwanException;
/**
* Thrown when a sensor is not configured properly.
*
* @author nick <palmer@cs.vu.nl>
*
*/
public class SensorConfigurationException extends SwanException {
/**
* The serial version id.
*/
private static final long serialVersionUID = -252249549122493864L;
/**
* Construct this type of exception.
* @param message the message for the exception
*/
public SensorConfigurationException(final String message) {
super(message);
}
}