Package org.apache.aries.transaction.exception

Examples of org.apache.aries.transaction.exception.TransactionRollbackException


        }
        catch (Exception e)
        {
          // We are throwing an exception, so we don't error it out
          LOGGER.debug("An exception has occured.", e);
          throw new TransactionRollbackException(e);
        }
      }
      else {
        // TODO: what now?
      }
View Full Code Here


           token.getTransactionStrategy().finish(tm, token);
        }
        catch (Exception e)
        {
          LOGGER.error("An exception has occured.", e);
          throw new TransactionRollbackException(e);
        }
      }
      else {
        // TODO: what now?
      }
View Full Code Here

           token.getTransactionAttribute().finish(tm, token);
        }
        catch (Exception e)
        {
          LOGGER.error("An exception has occured.", e);
          throw new TransactionRollbackException(e);
        }
      }
      else {
        // TODO: what now?
      }
View Full Code Here

        }
        catch (Exception e)
        {
          // We are throwing an exception, so we don't error it out
          LOGGER.debug(Constants.MESSAGES.getMessage("exception.during.tx.finish"), e);
          throw new TransactionRollbackException(e);
        }
      }
      else {
        // TODO: what now?
      }
View Full Code Here

TOP

Related Classes of org.apache.aries.transaction.exception.TransactionRollbackException

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.