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

net.autobuilder.core.ValidationException Maven / Gradle / Ivy

There is a newer version: 2.9.3
Show newest version
package net.autobuilder.core;

import javax.lang.model.element.Element;
import javax.tools.Diagnostic;

final class ValidationException extends RuntimeException {
  final Element about;
  final Diagnostic.Kind kind;

  ValidationException(String message, Element about, Diagnostic.Kind kind) {
    super(message);
    this.about = about;
    this.kind = kind;
  }

  ValidationException(String message, Element about) {
    this(message, about, Diagnostic.Kind.ERROR);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy