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

net.karneim.pojobuilder.analysis.InvalidElementException Maven / Gradle / Ivy

Go to download

The PojoBuilder Generator is a Java 6 compliant annotation processor that generates a fluent builder class for POJOs (Plain Old Java Object)

There is a newer version: 4.3.0
Show newest version
package net.karneim.pojobuilder.analysis;

import javax.lang.model.element.Element;

import net.karneim.pojobuilder.PojoBuilderException;

@SuppressWarnings("serial")
public class InvalidElementException extends PojoBuilderException {
  private final Element element;

  public InvalidElementException(String message, Element element) {
    super(message);
    this.element = element;
  }

  public Element getElement() {
    return element;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy