Package org.springframework.dao.support
Class ChainedPersistenceExceptionTranslator
java.lang.Object
org.springframework.dao.support.ChainedPersistenceExceptionTranslator
- All Implemented Interfaces:
- PersistenceExceptionTranslator
public class ChainedPersistenceExceptionTranslator
extends Object
implements PersistenceExceptionTranslator
Implementation of 
PersistenceExceptionTranslator that supports chaining,
 allowing the addition of PersistenceExceptionTranslator instances in order.
 Returns non-null on the first (if any) match.- Since:
- 2.0
- Author:
- Rod Johnson, Juergen Hoeller
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal voidAdd a PersistenceExceptionTranslator to the chained delegate list.final PersistenceExceptionTranslator[]Return all registered PersistenceExceptionTranslator delegates (as array).Translate the given runtime exception thrown by a persistence framework to a corresponding exception from Spring's genericDataAccessExceptionhierarchy, if possible.
- 
Constructor Details- 
ChainedPersistenceExceptionTranslatorpublic ChainedPersistenceExceptionTranslator()
 
- 
- 
Method Details- 
addDelegateAdd a PersistenceExceptionTranslator to the chained delegate list.
- 
getDelegatesReturn all registered PersistenceExceptionTranslator delegates (as array).
- 
translateExceptionIfPossibleDescription copied from interface:PersistenceExceptionTranslatorTranslate the given runtime exception thrown by a persistence framework to a corresponding exception from Spring's genericDataAccessExceptionhierarchy, if possible.Do not translate exceptions that are not understood by this translator: for example, if coming from another persistence framework, or resulting from user code or otherwise unrelated to persistence. Of particular importance is the correct translation to DataIntegrityViolationException, for example on constraint violation. Implementations may use Spring JDBC's sophisticated exception translation to provide further information in the event of SQLException as a root cause. - Specified by:
- translateExceptionIfPossiblein interface- PersistenceExceptionTranslator
- Parameters:
- ex- a RuntimeException to translate
- Returns:
- the corresponding DataAccessException (or nullif the exception could not be translated, as in this case it may result from user code rather than from an actual persistence problem)
- See Also:
 
 
-