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

io.vertx.docgen.processor.impl.DocGenException Maven / Gradle / Ivy

The newest version!
package io.vertx.docgen.processor.impl;

import javax.lang.model.element.Element;

/**
 * @author Julien Viet
 */
public class DocGenException extends RuntimeException {

  Element element;

  public DocGenException(Element element, String msg) {
    super(msg);
    this.element = element;
  }

  public DocGenException(String msg) {
    super(msg);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy