From: Juergen H. <jho...@us...> - 2008-10-16 10:29:24
|
Update of /cvsroot/springframework/spring/src/org/springframework/dao In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23477/src/org/springframework/dao Modified Files: TransientDataAccessException.java RecoverableDataAccessException.java TransientDataAccessResourceException.java Log Message: polishing Index: RecoverableDataAccessException.java =================================================================== RCS file: /cvsroot/springframework/spring/src/org/springframework/dao/RecoverableDataAccessException.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RecoverableDataAccessException.java 10 Sep 2007 13:26:43 -0000 1.2 --- RecoverableDataAccessException.java 16 Oct 2008 10:29:12 -0000 1.3 *************** *** 1,4 **** /* ! * Copyright 2002-2007 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); --- 1,4 ---- /* ! * Copyright 2002-2008 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); *************** *** 18,25 **** /** ! * Data access exception thrown when a previously failed operation might be able to succeed if the ! * application performs some recovery steps and retries the entire transaction or in the case of a distributed ! * transaction, the transaction branch. At a minimum, the recovery operation must include closing the current ! * connection and getting a new connection. * * @author Thomas Risberg --- 18,26 ---- /** ! * Data access exception thrown when a previously failed operation might be able ! * to succeed if the application performs some recovery steps and retries the entire ! * transaction or in the case of a distributed transaction, the transaction branch. ! * At a minimum, the recovery operation must include closing the current connection ! * and getting a new connection. * * @author Thomas Risberg Index: TransientDataAccessResourceException.java =================================================================== RCS file: /cvsroot/springframework/spring/src/org/springframework/dao/TransientDataAccessResourceException.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TransientDataAccessResourceException.java 29 May 2008 13:14:21 -0000 1.3 --- TransientDataAccessResourceException.java 16 Oct 2008 10:29:12 -0000 1.4 *************** *** 18,22 **** /** ! * Data access exception thrown when a resource fails temporarily and the operation can be retried. * * @author Thomas Risberg --- 18,23 ---- /** ! * Data access exception thrown when a resource fails temporarily ! * and the operation can be retried. * * @author Thomas Risberg Index: TransientDataAccessException.java =================================================================== RCS file: /cvsroot/springframework/spring/src/org/springframework/dao/TransientDataAccessException.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TransientDataAccessException.java 29 May 2008 13:14:21 -0000 1.3 --- TransientDataAccessException.java 16 Oct 2008 10:29:12 -0000 1.4 *************** *** 18,24 **** /** ! * Root of the hierarchy of data access exceptions that are considered transient - where a previoulsy ! * failed operation might be able to succeed when the operation is retried without any intervention by ! * application-level functionality. * * @author Thomas Risberg --- 18,24 ---- /** ! * Root of the hierarchy of data access exceptions that are considered transient - ! * where a previously failed operation might be able to succeed when the operation ! * is retried without any intervention by application-level functionality. * * @author Thomas Risberg |