Java tutorial
//package com.java2s; //License from project: LGPL import javax.xml.parsers.DocumentBuilderFactory; public class Main { private static void setAttributeEL(DocumentBuilderFactory factory, String name, Object value) { try { factory.setAttribute(name, value); } catch (Throwable t) { //SystemOut.printDate("attribute ["+name+"] is not allowed for ["+factory.getClass().getName()+"]"); } } }