Back to project page colibri.
The source code is released under:
Apache License
If you think the Android project colibri 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 labrom.colibri.xml; /* w w w . j a va2 s . co m*/ public class CursorException extends RuntimeException { /** * */ private static final long serialVersionUID = 1L; public CursorException() { super(); } public CursorException(String message, Throwable cause) { super(message, cause); } public CursorException(String message) { super(message); } public CursorException(Throwable cause) { super(cause); } }