Back to project page interdroid-swan.
The source code is released under:
Copyright (c) 2008-2011 Vrije Universiteit, The Netherlands All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the follo...
If you think the Android project interdroid-swan listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package interdroid.swan; /*from www . ja v a2s.c o m*/ 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); } }