Back to project page Orlib.
The source code is released under:
GNU Lesser General Public License
If you think the Android project Orlib 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 net.sourceforge.jsocks; //from ww w. j av a2 s .c o m public class SocksServerException extends Exception { String message; public SocksServerException(Exception e) { this.message = e.getMessage(); } public SocksServerException(String message) { this.message = message; } @Override public String getMessage() { return message; } }