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.engine; //from ww w .j av a2 s . c o m import interdroid.swan.SwanException; /** * Thrown when a sensor fails to be setup properly. * * @author nick <palmer@cs.vu.nl> * */ public class SensorSetupFailedException extends SwanException { /** * Serial version id. */ private static final long serialVersionUID = 4870747041723819862L; /** * Constructs this exception. * @param message the message for the exception */ public SensorSetupFailedException(final String message) { super(message); } }