Back to project page TodoList.
The source code is released under:
Apache License
If you think the Android project TodoList 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 lyc.simplesqlite.exception; // w ww. ja va2 s . c o m import java.lang.annotation.Annotation; /** * Created by ivan on 14-9-28. */ public class AnnotationNotFoundException extends RuntimeException { public AnnotationNotFoundException(Class<? extends Annotation> annotationType) { super(annotationType.getName() + " not found!"); } }