|
From: Michael K. <ko...@us...> - 2005-10-21 15:56:54
|
Update of /cvsroot/cobricks/cobricks2/src/org/cobricks/core/db In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17863/core/db Modified Files: DBAccess.java DBAccessImpl.java Log Message: Index: DBAccessImpl.java =================================================================== RCS file: /cvsroot/cobricks/cobricks2/src/org/cobricks/core/db/DBAccessImpl.java,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- DBAccessImpl.java 22 Aug 2005 13:52:06 -0000 1.19 +++ DBAccessImpl.java 21 Oct 2005 15:56:46 -0000 1.20 @@ -83,7 +83,8 @@ getClassLoader()); } catch (Exception e) { logger.error("Failed initializing JDBC driver class "+jdbcDriver); - throw new CobricksException(e.toString()); + throw new CobricksException("Failed initializing JDBC driver: " + +e.toString()); } // collect connection parameters Index: DBAccess.java =================================================================== RCS file: /cvsroot/cobricks/cobricks2/src/org/cobricks/core/db/DBAccess.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- DBAccess.java 19 Jan 2005 15:36:54 -0000 1.8 +++ DBAccess.java 21 Oct 2005 15:56:46 -0000 1.9 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2004 Cobricks Group. All rights reserved. + * Copyright (c) 2003-2005 Cobricks Group. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted under the terms of the Cobricks Software |