Back to project page GenDbHandler.
The source code is released under:
Open Data Commons ? Public Domain Dedication & Licence (PDDL) Preamble The Open Data Commons ? Public Domain Dedication & Licence is a document intended to allow you to freely share, modify, an...
If you think the Android project GenDbHandler 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 net.cattaka.util.genasyncif; /*from ww w .jav a2 s .c o m*/ public class AsyncInterfaceException extends RuntimeException { private static final long serialVersionUID = 1L; public AsyncInterfaceException() { super(); } public AsyncInterfaceException(String message, Throwable cause) { super(message, cause); } public AsyncInterfaceException(String message) { super(message); } public AsyncInterfaceException(Throwable cause) { super(cause); } }