Back to project page sms-backup-plus.
The source code is released under:
Apache License
If you think the Android project sms-backup-plus 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.zegoggles.smssync.service.exception; //from w ww . j a va2 s .c o m import com.zegoggles.smssync.R; public class NoConnectionException extends ConnectivityException { public NoConnectionException() { super(null); } @Override public int errorResourceId() { return R.string.error_no_connection; } }