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 .j ava 2s . c o m*/ public class TLAuthenticationFailureException extends TLFailureException { private static final long serialVersionUID = -2760519504496168047L; public TLAuthenticationFailureException() { super("Authentication failed."); } public TLAuthenticationFailureException(String message) { super(message); } }