*/
public InputStream getInputStream() throws IOException, SourceException {
try {
return this.source.getInputStream();
} catch (ResourceNotFoundException rnfe) {
throw new SourceNotFoundException("Source not found.", rnfe);
} catch (ProcessingException pe) {
throw new SourceException("ProcessingException", pe);
}
}