![JAR search and dependency download from the Maven repository](/logo.png)
com.hannesdorfmann.sqlbrite.objectmapper.processor.ProcessingException Maven / Gradle / Ivy
package com.hannesdorfmann.sqlbrite.objectmapper.processor;
import javax.lang.model.element.Element;
/**
* This kind of execption gets thrown if processing an element has failed
* @author Hannes Dorfmann
*/
public class ProcessingException extends Exception {
private Element element;
public ProcessingException(Element element, String message, Object... args) {
super(String.format(message, args));
this.element = element;
}
public Element getElement() {
return element;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy