Package com.arjuna.mw.wsas.exceptions

Examples of com.arjuna.mw.wsas.exceptions.SystemCommunicationException


                // log an error here or else the participant may be left hanging
                // waiting for a prepare
                if (wstxLogger.arjLoggerI18N.isErrorEnabled()) {
                    wstxLogger.arjLoggerI18N.error("com.arjuna.mwlabs.wst.at.participants.DurableTwoPhaseCommitParticipant.prepare_1", new Object[] { _id });
                }
                throw new SystemCommunicationException(ex.toString());
            } else {
      throw new SystemException(ex.toString());
            }
        }
  }
View Full Code Here


        if(ex instanceof com.arjuna.wst.stub.SystemCommunicationException) {
                    // log an error here -- we will end up writing a heuristic transaction record too
                    if (wstxLogger.arjLoggerI18N.isErrorEnabled()) {
                        wstxLogger.arjLoggerI18N.error("com.arjuna.mwlabs.wst.at.participants.DurableTwoPhaseCommitParticipant.confirm_1", new Object[] { _id });
                    }
                    throw new SystemCommunicationException(ex.toString());
                } else {
                    throw new SystemException(ex.toString());
                }
            }
    }
View Full Code Here

                if(ex instanceof com.arjuna.wst.stub.SystemCommunicationException) {
                    // log an error here -- if the participant is dead it will retry anyway
                    if (wstxLogger.arjLoggerI18N.isErrorEnabled()) {
                        wstxLogger.arjLoggerI18N.error("com.arjuna.mwlabs.wst.at.participants.DurableTwoPhaseCommitParticipant.cancel_1", new Object[] { _id });
                    }
                    throw new SystemCommunicationException(ex.toString());
                } else {
                    throw new SystemException(ex.toString());
                }
      }
    }
View Full Code Here

TOP

Related Classes of com.arjuna.mw.wsas.exceptions.SystemCommunicationException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.