javax.transaction
Class SystemException
- Serializable
A generic transaction exception.
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
clone, equals, extends Object> getClass, finalize, hashCode, notify, notifyAll, toString, wait, wait, wait |
View More Examples of SystemException()
1: } else if (firstThrowable != null) {
2: throw (SystemException) new SystemException().initCause(firstThrowable);
3: }
4: }
View Full Code Here
1: _logger.log(Level.SEVERE,"enterprise_distributedtx.excep_in_utx_commit", ex);
2: throw new SystemException();
3: } finally {
4: ...
5: _logger.log(Level.SEVERE,"enterprise_distributedtx.excep_in_utx_rollback", ex);
6: throw new SystemException();
7: } finally {
8: inv.setTransaction(null);
9: }
View Full Code Here
View More Examples of SystemException(int errorCode)
1: public SystemException newSystemException(String str) {
2: return new SystemException(str);
3: }
4:
5: public SystemException newSystemException(Exception ex) {
View Full Code Here
1: ComponentInvocation.APP_CLIENT_INVOCATION) {
2: throw new SystemException(sm.getString("enterprise_distributedtx.usertransaction_not_supported"));
3: }
4: ...
5: _logger.log(Level.SEVERE,"enterprise_distributedtx.excep_in_utx_begin", ex);
6: SystemException sysEx = new SystemException(ex.getMessage());
7: sysEx.initCause(ex);
8: throw sysEx;
9: }
View Full Code Here
View More Examples of SystemException(String msg)
1: public SystemException newSystemException(String str) {
2: return new SystemException(str);
3: }
4:
5: public SystemException newSystemException(Exception ex) {
View Full Code Here
1: ComponentInvocation.APP_CLIENT_INVOCATION) {
2: throw new SystemException(sm.getString("enterprise_distributedtx.usertransaction_not_supported"));
3: }
4: ...
5: _logger.log(Level.SEVERE,"enterprise_distributedtx.excep_in_utx_begin", ex);
6: SystemException sysEx = new SystemException(ex.getMessage());
7: sysEx.initCause(ex);
8: throw sysEx;
9: }
View Full Code Here
View More Examples of SystemException(Throwable rootCause)
1: public SystemException newSystemException(String str) {
2: return new SystemException(str);
3: }
4:
5: public SystemException newSystemException(Exception ex) {
View Full Code Here
1: ComponentInvocation.APP_CLIENT_INVOCATION) {
2: throw new SystemException(sm.getString("enterprise_distributedtx.usertransaction_not_supported"));
3: }
4: ...
5: _logger.log(Level.SEVERE,"enterprise_distributedtx.excep_in_utx_begin", ex);
6: SystemException sysEx = new SystemException(ex.getMessage());
7: sysEx.initCause(ex);
8: throw sysEx;
9: }
View Full Code Here