Back to project page sampleaccountandserver.
The source code is released under:
Apache License
If you think the Android project sampleaccountandserver 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.jiahaoliuliu.android.sampleaccountandserver.exception; /*www . ja va 2 s .c om*/ /** * The customized Session exception * */ public class SessionException extends Exception { /** * The default Serial version UID */ private static final long serialVersionUID = 1L; public SessionException(String message) { super(message); } }