}
private void checkNotNamespaceSensitive(Configuration config, final int typeCode) throws XPathException {
SchemaType type = config.getSchemaType(typeCode & NamePool.FP_MASK);
if (type instanceof SimpleType && ((SimpleType)type).isNamespaceSensitive()) {
throw new CopyNamespaceSensitiveException(
"Cannot copy QName or NOTATION values without copying namespaces");
// err.setErrorCode((language == Configuration.XSLT ? "XTTE0950" : "XQTY0086"));
// throw err;
}
}