Back to project page LibGeppa.
The source code is released under:
Apache License
If you think the Android project LibGeppa 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.libgeppa.binder.async; // w ww . j ava 2 s . c om public class AsyncInterfaceException extends RuntimeException { private static final long serialVersionUID = 1L; public AsyncInterfaceException() { super(); } public AsyncInterfaceException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public AsyncInterfaceException(String detailMessage) { super(detailMessage); } public AsyncInterfaceException(Throwable throwable) { super(throwable); } }