/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package org.jboss.cache.lock;
import org.jboss.util.NestedException;

/**
 * @author Ben
 */
public class OwnerNotExistedException extends NestedException
{

   /**
    *
    */
   public OwnerNotExistedException()
   {
      super();
      // TODO Auto-generated constructor stub
   }

   /**
    * @param message
    */
   public OwnerNotExistedException(String message)
   {
      super(message);
      // TODO Auto-generated constructor stub
   }

   /**
    * @param message
    * @param cause
    */
   public OwnerNotExistedException(String message, Throwable cause)
   {
      super(message, cause);
      // TODO Auto-generated constructor stub
   }

   /**
    * @param cause
    */
   public OwnerNotExistedException(Throwable cause)
   {
      super(cause);
      // TODO Auto-generated constructor stub
   }

}