Project

General

Profile

« Previous | Next » 

Revision 5454

Added by berkley almost 14 years ago

debug statements in dbsaxhandler

View differences:

DBSAXHandler.java
388 388
                        createDate, updateDate);
389 389
                }               
390 390
            } catch (Exception ane) {
391
                ane.printStackTrace();
392
                throw (new SAXException("Error in DBSaxHandler.startElement "
393
                        + action, ane));
391
                ane.printStackTrace(System.out);
392
                ane.printStackTrace(System.err);
393
                throw (new SAXException("Error in DBSaxHandler.startElement for action "
394
                        + action + " : " + ane.getMessage(), ane));
394 395
            }
395 396
        }
396 397

  
......
458 459
				currentTriple = new Triple();
459 460
			}
460 461
		} catch (PropertyNotFoundException pnfe) {
461
			pnfe.printStackTrace();
462
			throw (new SAXException("Error in DBSaxHandler.startElement " + action, pnfe));
462
			pnfe.printStackTrace(System.out);
463
			pnfe.printStackTrace(System.err);
464
			throw (new SAXException("Error in DBSaxHandler.startElement for action " + action +
465
			        " : " + pnfe.getMessage(), pnfe));
463 466
		}
464 467
	}               
465 468
    

Also available in: Unified diff