All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dominokit.domino.apt.commons.ProcessingException Maven / Gradle / Ivy

package org.dominokit.domino.apt.commons;

import javax.lang.model.element.Element;

public class ProcessingException extends RuntimeException {

    private final transient Element element;

    public ProcessingException(Element element, String msg, Object... args) {
        super(String.format(msg, args));
        this.element = element;
    }

    public Element getElement() {
        return element;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy