public AnalyzerLog analyzeTrackInfo() {
try {
return TrackInfoAnalyzer.analyze(this, this.getID3Tag());
} catch (ID3TagException e) {
return new AnalysisNotPossibleBecauseOfExceptionLog(e, this.getTitle(), this.getArtist().toString());
// throw new TrackAnalyzerRuntimeException(e,
// "Track Analysis not possible, because problem with ID3Tag occured!");
} catch (ID3Tagjid3libInternalException e) {
return new AnalysisNotPossibleBecauseOfId3LogEntry(this.getTitle(), this.getArtist().toString());
}