package io.trygvis.container.compiler; import javax.lang.model.element.Element; public class CompilerException extends RuntimeException { public final Element element; public CompilerException(String message) { this(null, message); } public CompilerException(Element element, String message) { super(message); this.element = element; } }