Back to project page mpiwifi.
The source code is released under:
GNU General Public License
If you think the Android project mpiwifi 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.sorz.mpiwifi.exceptions; //from w ww .jav a 2 s .c o m import java.io.IOException; public class NetworkException extends IOException { private static final long serialVersionUID = -3528448463883518431L; public NetworkException() { } public NetworkException(String message) { } public NetworkException(Throwable cause) { } public NetworkException(String message, Throwable cause) { } }