Package com.arjuna.wst

Examples of com.arjuna.wst.UnknownTransactionException


                throw new TransactionRolledBackException() ;
            }
            final SoapFault soapFault = callback.getSoapFault() ;
            if ((soapFault != null) && ArjunaTXConstants.UNKNOWNTRANSACTION_ERROR_CODE_QNAME.equals(soapFault.getSubcode()))
            {
                throw new UnknownTransactionException();
            }
        }
       
        throw new SystemException() ;
  }
View Full Code Here


                return ;
            }
            final SoapFault soapFault = callback.getSoapFault() ;
            if ((soapFault != null) && ArjunaTXConstants.UNKNOWNTRANSACTION_ERROR_CODE_QNAME.equals(soapFault.getSubcode()))
            {
                throw new UnknownTransactionException();
            }
        }
       
        throw new SystemException() ;
  }
View Full Code Here

                {
                    throw new TransactionRolledBackException();
                }
                else if (ArjunaTXConstants.UNKNOWNTRANSACTION_ERROR_CODE_QNAME.equals(subcode))
                {
                    throw new UnknownTransactionException() ;
                }
            }
        }
        throw new SystemException() ;
    }
View Full Code Here

            if (soapFault != null)
            {
                final QName subcode = soapFault.getSubcode() ;
                if (ArjunaTXConstants.UNKNOWNTRANSACTION_ERROR_CODE_QNAME.equals(subcode))
                {
                    throw new UnknownTransactionException() ;
                }
            }
        }
        throw new SystemException() ;
    }
View Full Code Here

            if (soapFault != null)
            {
                final QName subcode = soapFault.getSubcode() ;
                if (ArjunaTXConstants.UNKNOWNTRANSACTION_ERROR_CODE_QNAME.equals(subcode))
                {
                    throw new UnknownTransactionException() ;
                }
            }
        }
        throw new SystemException() ;
    }
View Full Code Here

      _cm.confirm();
  }
  catch (com.arjuna.mw.wsas.exceptions.InvalidActivityException ex)
  {
      throw new UnknownTransactionException();
  }
  catch (com.arjuna.mw.wsas.exceptions.WrongStateException ex)
  {
      throw new SystemException(ex.toString());
  }
  catch (com.arjuna.mw.wsas.exceptions.ProtocolViolationException ex)
  {
      //      throw new HeuristicHazardException();
     
      throw new SystemException(ex.toString());
  }
  catch (com.arjuna.mw.wscf.exceptions.NoCoordinatorException ex)
  {
      throw new UnknownTransactionException();
  }
  catch (com.arjuna.mw.wscf.model.twophase.exceptions.CoordinatorCancelledException ex)
  {
      throw new TransactionRolledBackException();
  }
View Full Code Here

     
      _cm.cancel();
  }
  catch (com.arjuna.mw.wsas.exceptions.InvalidActivityException ex)
  {
      throw new UnknownTransactionException();
  }
  catch (com.arjuna.mw.wsas.exceptions.WrongStateException ex)
  {
      throw new SystemException(ex.toString());
  }
  catch (com.arjuna.mw.wsas.exceptions.ProtocolViolationException ex)
  {
      throw new SystemException();
  }
  catch (com.arjuna.mw.wscf.exceptions.NoCoordinatorException ex)
  {
      throw new UnknownTransactionException();
  }
  catch (com.arjuna.mw.wscf.model.twophase.exceptions.CoordinatorConfirmedException ex)
  {
      throw new SystemException();
  }
View Full Code Here

    {
      throw new WrongStateException();
    }
    catch (com.arjuna.wsc.NoActivityException ex)
    {
      throw new UnknownTransactionException();
    }
  }
View Full Code Here

    }
    catch (com.arjuna.wsc.NoActivityException ex)
    {
      ex.printStackTrace();

      throw new UnknownTransactionException();
    }
  }
View Full Code Here

    {
      throw new WrongStateException();
    }
    catch (com.arjuna.wsc.NoActivityException ex)
    {
      throw new UnknownTransactionException();
    }
  }
View Full Code Here

TOP

Related Classes of com.arjuna.wst.UnknownTransactionException

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.