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; //ww w. jav a 2s. co m @SuppressWarnings("serial") public class CheepCheepException extends Exception { public CheepCheepException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public CheepCheepException(String detailMessage) { super(detailMessage); } public CheepCheepException(Throwable throwable) { super(throwable); } }