|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.springframework.core.NestedRuntimeException org.springframework.transaction.TransactionException org.springframework.transaction.TransactionSystemException
public class TransactionSystemException
Exception thrown when a general transaction system error is encountered, like on commit or rollback.
Constructor Summary | |
---|---|
TransactionSystemException(String msg)
Constructor for TransactionSystemException. |
|
TransactionSystemException(String msg,
Throwable cause)
Constructor for TransactionSystemException. |
Method Summary | |
---|---|
boolean |
contains(Class exType)
Check whether this exception contains an exception of the given type: either it is of the given class itself or it contains a nested cause of the given type. |
Throwable |
getApplicationException()
Return the application exception that was thrown before this transaction exception, if any. |
Throwable |
getOriginalException()
Return the exception that was the first to be thrown within the failed transaction: i.e. |
void |
initApplicationException(Throwable ex)
Set an application exception that was thrown before this transaction exception, preserving the original exception despite the overriding TransactionSystemException. |
Methods inherited from class org.springframework.core.NestedRuntimeException |
---|
getMessage, getMostSpecificCause, getRootCause |
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public TransactionSystemException(String msg)
msg
- the detail messagepublic TransactionSystemException(String msg, Throwable cause)
msg
- the detail messagecause
- the root cause from the transaction API in useMethod Detail |
---|
public void initApplicationException(Throwable ex)
ex
- the application exception
IllegalStateException
- if this TransactionSystemException already holds an
application exceptionpublic final Throwable getApplicationException()
null
if none setpublic Throwable getOriginalException()
null
if there was nonepublic boolean contains(Class exType)
NestedRuntimeException
contains
in class NestedRuntimeException
exType
- the exception type to look for
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |