this.lastAccess = new Date();
return feed;
} catch (IllegalArgumentException ex) {
throw new CannotAccessFeedException("Unable to access feed at: " + this.url, ex);
} catch (IOException ex) {
throw new CannotAccessFeedException("Unable to access feed at: " + this.url, ex);
} catch (FeedException ex) {
throw new CannotAccessFeedException("Unable to access feed at: " + this.url, ex);
} catch (JDOMException ex) {
throw new CannotAccessFeedException("Unable to access feed at: " + this.url, ex);
}
}