Back to project page Locast-Core-Android.
The source code is released under:
GNU General Public License
If you think the Android project Locast-Core-Android 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 edu.mit.mobile.android.locast.data; // ww w .j av a 2 s .co m public class SyncMapException extends RuntimeException { /** * */ private static final long serialVersionUID = -2593099075563144728L; public SyncMapException(String message, Throwable e) { super(message, e); } public SyncMapException(String message) { super(message); } }