public class ChainedPersistenceExceptionTranslator extends java.lang.Object implements PersistenceExceptionTranslator
PersistenceExceptionTranslator
that supports chaining,
allowing the addition of PersistenceExceptionTranslator instances in order.
Returns non-null
on the first (if any) match.Constructor and Description |
---|
ChainedPersistenceExceptionTranslator() |
Modifier and Type | Method and Description |
---|---|
void |
addDelegate(PersistenceExceptionTranslator pet)
Add a PersistenceExceptionTranslator to the chained delegate list.
|
PersistenceExceptionTranslator[] |
getDelegates()
Return all registered PersistenceExceptionTranslator delegates (as array).
|
DataAccessException |
translateExceptionIfPossible(java.lang.RuntimeException ex)
Translate the given runtime exception thrown by a persistence framework to a
corresponding exception from Spring's generic
DataAccessException hierarchy, if possible. |
public ChainedPersistenceExceptionTranslator()
public final void addDelegate(PersistenceExceptionTranslator pet)
public final PersistenceExceptionTranslator[] getDelegates()
@Nullable public DataAccessException translateExceptionIfPossible(java.lang.RuntimeException ex)
PersistenceExceptionTranslator
DataAccessException
hierarchy, 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.
translateExceptionIfPossible
in interface PersistenceExceptionTranslator
ex
- a RuntimeException to translatenull
if the
exception could not be translated, as in this case it may result from
user code rather than from an actual persistence problem)DataIntegrityViolationException
,
SQLExceptionTranslator