Back to project page TumblifeForAndroid.
The source code is released under:
GNU General Public License
If you think the Android project TumblifeForAndroid 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 jp.mitukiii.tumblife.exeption; /* w ww .j a va 2 s . c o m*/ public class TLSDCardNotFoundException extends TLFailureException { private static final long serialVersionUID = 7263100142532892304L; public TLSDCardNotFoundException() { super("SDCard not found."); } public TLSDCardNotFoundException(String message) { super(message); } }