Back to project page DataSync.
The source code is released under:
Apache License
If you think the Android project DataSync 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 com.cardiomood.android.sync; //from ww w . ja v a2 s .c o m /** * Created by antondanhsin on 26/10/14. */ public class SyncException extends Exception { public SyncException(String detailMessage) { super(detailMessage); } public SyncException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public SyncException(Throwable throwable) { super(throwable); } }