Back to project page cheepcheep.
The source code is released under:
Apache License
If you think the Android project cheepcheep 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.tarrio.cheepcheep.exceptions; /*from w ww. j a va 2s . co m*/ @SuppressWarnings("serial") public class NetError extends CheepCheepException { public NetError(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public NetError(String detailMessage) { super(detailMessage); } public NetError(Throwable throwable) { super(throwable); } }