RegionNotEmptyException.java :  » JBoss » JBossCache » org » jboss » cache » Java Open Source

Java Open Source » JBoss » JBossCache 
JBossCache » org » jboss » cache » RegionNotEmptyException.java
/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */

package org.jboss.cache;

/**
 * Thrown when an attempt is made to {@link RegionManager#activate(Fqn)} activate a subtree}
 * root in Fqn that already has an existing node in the cache.
 *
 * @author <a href="mailto://brian.stansberry@jboss.com">Brian Stansberry</a>
 */
public class RegionNotEmptyException extends CacheException
{

   /**
    * The serialVersionUID
    */
   private static final long serialVersionUID = 1L;

   public RegionNotEmptyException()
   {
      super();
   }

   public RegionNotEmptyException(String msg)
   {
      super(msg);
   }

   public RegionNotEmptyException(String msg, Throwable cause)
   {
      super(msg, cause);
   }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.