private IllegalArgumentException getIllegalArgumentException(AttributeIfc attributeIfc) {
   return new IllegalArgumentException(
       "Unknown attribute type "
           + attributeIfc.getClass()
           + ", "
           + attributeIfc
           + " with open type:"
           + attributeIfc.getOpenType());
 }