/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.core.exceptions; public class UnavailableAttributeException extends AttributeBuilderException { /** * */ private static final long serialVersionUID = -1114323185905118432L; private String attributeName; public UnavailableAttributeException(String attributeName) { super("Attribute " + attributeName + " is not available."); this.attributeName = attributeName; } public String getAttributeName() { return attributeName; } }