Examples of UnexpectedThrowable


Examples of org.jboss.util.UnexpectedThrowable

      TxWorkManager.removeWork(work, tx);
    }
    catch (Exception ex)
    {
      throw new UnexpectedThrowable(ex);
    }
  }
View Full Code Here

Examples of org.jboss.util.UnexpectedThrowable

         disassociateThread();
      }
      catch (WorkCompletedException e)
      {
         log.error("Unexpected error from endWork ", e);
         throw new UnexpectedThrowable(e.toString());
      }
      if (trace)
         log.trace("ended work="+ work +" xid=" + xid);
   }
View Full Code Here

Examples of org.jboss.util.UnexpectedThrowable

         tx.setWork(null);
      }
      catch (WorkCompletedException e)
      {
         log.error("Unexpected error from cancelWork ", e);
         throw new UnexpectedThrowable(e.toString());
      }
      if (trace)
         log.trace("cancled work="+ work +" xid=" + xid);
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.