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

net.beanstandard.compiler.ValidationException Maven / Gradle / Ivy

There is a newer version: 1.5
Show newest version
package net.beanstandard.compiler;

import javax.lang.model.element.Element;

final class ValidationException extends RuntimeException {
  final Element about;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy