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; /*from ww w. j a v a 2 s.c o m*/ public class TLParserException extends TLFailureException { private static final long serialVersionUID = -5127186827932785079L; public TLParserException() { super("Parsing failed."); } public TLParserException(String message) { super(message); } }