Back to project page masa.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUC...
If you think the Android project masa 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 org.jvending.masa.ddmlib; /* www .j a va 2 s . c om*/ public class ConnectionException extends Exception { /** * */ private static final long serialVersionUID = 4728803709587003832L; public ConnectionException() { super(); } public ConnectionException( String message, Throwable throwable ) { super( message, throwable ); } public ConnectionException( String message ) { super( message ); } public ConnectionException( Throwable throwable ) { super( throwable ); } }