From: Wolfgang M. M. <wol...@us...> - 2004-06-21 15:27:51
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/http In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16641/src/org/exist/http Modified Files: RESTServer.java Log Message: Added copyResource method to DBBroker. Index: RESTServer.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/http/RESTServer.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** RESTServer.java 25 May 2004 09:26:08 -0000 1.12 --- RESTServer.java 21 Jun 2004 15:27:38 -0000 1.13 *************** *** 616,619 **** --- 616,623 ---- throw new BadRequestException("Error while serializing xml: " + e.toString(), e); + } catch(Exception e) { + LOG.warn(e.getMessage(), e); + throw new BadRequestException("Error while serializing xml: " + + e.toString(), e); } } |