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.exception; /* w w w. ja v a 2 s .co m*/ public class NotImplementedException extends RuntimeException { private static final long serialVersionUID = 1L; public NotImplementedException() { super(); } public NotImplementedException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public NotImplementedException(String detailMessage) { super(detailMessage); } public NotImplementedException(Throwable throwable) { super(throwable); } }