In org.apache.xerces.util.DOMUtil.copyInfo the default case of the switch is
default: {
throw new IllegalArgumentException("can't copy node type, "+
type+" ("+
node.getNodeName()+')');
}
but node will be null in this case, which will throw a NullPtrException,
masking the IllegalArgumentException
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
