Package com.arjuna.wst

Examples of com.arjuna.wst.SystemException


            // fail means faulted as far as the coordinator manager is concerned
            coordinator.participantFaulted(participantId);
        }
        catch (com.arjuna.mw.wscf.exceptions.InvalidParticipantException ex)
        {
            throw new SystemException("UnknownParticipantException");
        }
        catch (com.arjuna.mw.wsas.exceptions.SystemException ex)
        {
            throw new SystemException(ex.toString());
        }
    }
View Full Code Here


        {
            coordinator.participantCannotComplete(participantId);
        }
        catch (com.arjuna.mw.wscf.exceptions.InvalidParticipantException ex)
        {
            throw new SystemException("UnknownParticipantException");
        }
        catch (com.arjuna.mw.wsas.exceptions.WrongStateException ex)
        {
            throw new WrongStateException();
        }
        catch (com.arjuna.mw.wsas.exceptions.SystemException ex)
        {
            throw new SystemException(ex.toString());
        }
    }
View Full Code Here

            _coordManager = CoordinatorManagerFactory.coordinatorManager();
            _hier = _coordManager.currentActivity();
        }
        catch (ProtocolNotRegisteredException pnre)
        {
            throw new SystemException(pnre.toString());
        }
        catch (com.arjuna.mw.wsas.exceptions.SystemException ex)
        {
            throw new SystemException(ex.toString());
        }
    }
View Full Code Here

    }
    catch (com.arjuna.wsc.InvalidCreateParametersException ex)
    {
      tidyup();

      throw new SystemException(ex.toString());
    }
    catch (com.arjuna.wst.UnknownTransactionException ex)
    {
      tidyup();

      throw new SystemException(ex.toString());
    }
    catch (SystemException ex)
    {
      tidyup();
View Full Code Here

        {
            throw new UnknownTransactionException();
        }
        catch (com.arjuna.mw.wsas.exceptions.ProtocolViolationException ex)
        {
            throw new SystemException(ex.toString());
        }
        catch (com.arjuna.mw.wscf.model.sagas.exceptions.CoordinatorCancelledException ex)
        {
            throw new TransactionRolledBackException();
        }
        catch (com.arjuna.mw.wscf.exceptions.NoCoordinatorException ex)
        {
            throw new UnknownTransactionException();
        }
        catch (com.arjuna.mw.wsas.exceptions.WrongStateException ex)
        {
            throw new SystemException(ex.toString());
        }
        catch (com.arjuna.mw.wsas.exceptions.NoPermissionException ex)
        {
            throw new SystemException(ex.toString());
        }
        catch (com.arjuna.mw.wsas.exceptions.SystemException ex)
        {
            throw new SystemException(ex.toString());
        }
        catch (UnknownTransactionException ex)
        {
            throw ex;
        }
View Full Code Here

        }
        catch (com.arjuna.wsc.InvalidCreateParametersException ex)
        {
            tidyup();

            throw new SystemException(ex.toString());
        }
        catch (com.arjuna.wst.UnknownTransactionException ex)
        {
            tidyup();

            throw new SystemException(ex.toString());
        }
        catch (SystemException ex)
        {
            tidyup();
View Full Code Here

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

  {
      throw new UnknownTransactionException();
  }
  catch (com.arjuna.mw.wsas.exceptions.WrongStateException ex)
  {
      throw new SystemException(ex.toString());
  }
  catch (com.arjuna.mw.wsas.exceptions.NoPermissionException ex)
  {
      throw new SystemException(ex.toString());
  }
  catch (com.arjuna.mw.wsas.exceptions.ProtocolViolationException ex)
  {
      throw new SystemException(ex.toString());
  }
  catch (com.arjuna.mw.wscf.exceptions.NoCoordinatorException ex)
  {
      throw new UnknownTransactionException();
  }
  catch (com.arjuna.mw.wsas.exceptions.SystemException ex)
  {
      throw new SystemException();
  }
  catch (UnknownTransactionException ex)
  {
      throw ex;
  }
View Full Code Here

      _completionCoordinators.put(id, completionCoordinator);
    }
    catch (com.arjuna.wsc.AlreadyRegisteredException ex)
    {
      throw new SystemException(ex.toString());
    }
  }
View Full Code Here

            final CoordinationContextType currentContext = (current != null ? getContextType(current) : null);
            final CoordinationContextType coordinationContext = ActivationCoordinator.createCoordinationContext(
                    _activationCoordinatorService, messageId, AtomicTransactionConstants.WSAT_PROTOCOL, expires, currentContext) ;
            if (coordinationContext == null)
            {
                throw new SystemException(
                    wstxLogger.log_mesg.getString("com.arjuna.mwlabs.wst.at.remote.UserTransactionImple_2"));
            }
            return new ContextImple(coordinationContext) ;
    }
        catch (final InvalidCreateParametersException icpe)
        {
            throw icpe ;
        }
    catch (final SoapFault sf)
    {
      throw new SystemException(sf.getMessage()) ;
    }
    catch (final Exception ex)
    {
      throw new SystemException(ex.toString());
    }
  }
View Full Code Here

TOP

Related Classes of com.arjuna.wst.SystemException

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.