return;
} catch (IOException e) {
String message = "Can't read from URL " + sourceAtt;
this.logger.error(message, e);
throw new ProcessingException(message, e);
}
} else {
String message = "The <include> element must contain a 'src' attribute that contains a URL.";
this.logger.error(message);
throw new ProcessingException(message);
}
} else {
super.startElement(uri, localName, name, atts);
}
}