private final POIFSChunkParser parser;
public OutlookExtractor(POIFSFileSystem filesystem) throws TikaException {
try {
this.parser = new POIFSChunkParser(filesystem);
this.chunks = parser.identifyChunks();
} catch (IOException e) {
throw new TikaException("Failed to parse Outlook chunks", e);
}
}