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 www. j a v a 2s . c om @SuppressWarnings("serial") public class ParseError extends CheepCheepException { public ParseError(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public ParseError(String detailMessage) { super(detailMessage); } public ParseError(Throwable throwable) { super(throwable); } }