
com.malinskiy.sheldon.codegen.ProcessingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler Show documentation
Show all versions of compiler Show documentation
Reactive preferences abstraction
package com.malinskiy.sheldon.codegen;
import javax.lang.model.element.Element;
public class ProcessingException extends Exception {
Element element;
public ProcessingException(Element element, String msg, Object... args) {
super(String.format(msg, args));
this.element = element;
}
public Element getElement() {
return element;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy