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 w w. jav a 2 s . co m*/ import java.io.IOException; public class TLFailureException extends IOException { private static final long serialVersionUID = 820045226246174242L; public TLFailureException() {} public TLFailureException(String message) { super(message); } }