protected void processElement(Element e, TypeElement ann, boolean warningsOnly) {
final String annName = ann.getQualifiedName().toString();
if (annName.equals(Reflect.class.getCanonicalName())) {
final Reflect reflect = e.getAnnotation(Reflect.class);
catchExceptions = reflect.catchExceptions();
} else if (annName.equals(Hack.class.getCanonicalName())) {
catchExceptions = true;
} else {
catchExceptions = false;
}