[jboss-cvs] JBossCache/src/org/jboss/cache ...

Manik Surtani msurtani at jboss.com
Wed Feb 28 13:37:04 EST 2007


  User: msurtani
  Date: 07/02/28 13:37:04

  Modified:    src/org/jboss/cache  Tag: Branch_JBossCache_1_4_0
                        TreeCache.java
  Log:
  JBCACHE-979
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.195.2.51 +9 -3      JBossCache/src/org/jboss/cache/Attic/TreeCache.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TreeCache.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/Attic/TreeCache.java,v
  retrieving revision 1.195.2.50
  retrieving revision 1.195.2.51
  diff -u -b -r1.195.2.50 -r1.195.2.51
  --- TreeCache.java	21 Feb 2007 17:04:41 -0000	1.195.2.50
  +++ TreeCache.java	28 Feb 2007 18:37:03 -0000	1.195.2.51
  @@ -99,7 +99,7 @@
    * @author <a href="mailto:manik at jboss.org">Manik Surtani (manik at jboss.org)</a>
    * @author Brian Stansberry
    * @author Daniel Huang (dhuang at jboss.org)
  - * @version $Id: TreeCache.java,v 1.195.2.50 2007/02/21 17:04:41 bstansberry Exp $
  + * @version $Id: TreeCache.java,v 1.195.2.51 2007/02/28 18:37:03 msurtani Exp $
    *          <p/>
    * @see <a href="http://labs.jboss.com/portal/jbosscache/docs">JBossCache doc</a>
    */
  @@ -5785,10 +5785,16 @@
         {
            return interceptor_chain.invoke(m);
         }
  +      catch (CacheException ce)
  +      {
  +         throw ce;
  +      }
  +      catch (RuntimeException re)
  +      {
  +         throw re;
  +      }
         catch (Throwable t)
         {
  -         if (t instanceof CacheException)
  -            throw (CacheException) t;
            throw new RuntimeException(t);
         }
      }
  
  
  



More information about the jboss-cvs-commits mailing list