Back to project page RestIt.
The source code is released under:
Apache License
If you think the Android project RestIt 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.restit.network; // ww w . jav a 2 s .co m /** * Error Exception thrown when the network is not available * * @author Cody * */ public class NetworkNotAvailableException extends Exception { /** * */ private static final long serialVersionUID = -501311373528878782L; public NetworkNotAvailableException() { super(); } public NetworkNotAvailableException(String message) { super(message); } }