avatar

588

Fix saving the XML file of auctions where the underlying auction info object has vanished for some reason.

by mrs, 05 Aug, 2008 04:04 PM
584 588  
201201       try {
202202         serverChild.addChild(ae.toXML());
203203       } catch (Exception e) {
204         try {
204205         ErrorManagement.handleException("Exception trying to save auction " + ae.getIdentifier() + " (" + ae.getTitle() + ") -- Not saving", e);
206         } catch(Exception e2) {
207           ErrorManagement.handleException("Exception trying to save auction entry id " + ae.getId() + " -- Not saving", e);
208         }
205209       }
206210     }
207211