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

Ben Wang bwang at jboss.com
Wed Jul 26 03:59:02 EDT 2006


  User: bwang   
  Date: 06/07/26 03:59:02

  Added:       src-50/org/jboss/cache/pojo 
                        PojoCacheAlreadyDetachedException.java
  Log:
  JBCACHE-713 Remote detach can throw PojoCacheAlreadyDetachedException.
  
  Revision  Changes    Path
  1.1      date: 2006/07/26 07:59:02;  author: bwang;  state: Exp;JBossCache/src-50/org/jboss/cache/pojo/PojoCacheAlreadyDetachedException.java
  
  Index: PojoCacheAlreadyDetachedException.java
  ===================================================================
  /*
   * JBoss, Home of Professional Open Source
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  
  package org.jboss.cache.pojo;
  
  /**
   * Thrown when the POJO has already detached from the cache store by the remote side, but user
   * is still trying to access it via the cache interceptor.
   *
   * @author Ben Wang
   * @version $Id: PojoCacheAlreadyDetachedException.java,v 1.1 2006/07/26 07:59:02 bwang Exp $
   */
  public class PojoCacheAlreadyDetachedException extends PojoCacheException
  {
     public PojoCacheAlreadyDetachedException()
     {
        super();
     }
  
     public PojoCacheAlreadyDetachedException(String err, Throwable e)
     {
        super(err, e);
     }
  
     public PojoCacheAlreadyDetachedException(String err)
     {
        super(err);
     }
  
     public PojoCacheAlreadyDetachedException(Throwable e)
     {
        super(e);
     }
  }
  
  
  



More information about the jboss-cvs-commits mailing list