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

com.bettercloud.bigtable.orm.process.ElementProcessingException Maven / Gradle / Ivy

package com.bettercloud.bigtable.orm.process;

import javax.lang.model.element.Element;

class ElementProcessingException extends Exception {

    private final Element element;

    ElementProcessingException(final String message, final Element element) {
        super(message);

        this.element = element;
    }

    Element getElement() {
        return element;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy