Back to project page storm-gen.
The source code is released under:
Apache License
If you think the Android project storm-gen 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 com.turbomanage.storm.apt; /* www . j a v a2s. co m*/ import javax.lang.model.element.Element; public class StormAnnotationException extends RuntimeException { private static final long serialVersionUID = -4916405018264078766L; private Element element; public StormAnnotationException(String msg, Element e) { super(msg); this.element = e; } public Element getElement() { return element; } }