| DeadlockException.java |
// $Id: DeadlockException.java,v 1.2 2004/01/28 01:39:38 bwang00 Exp $
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
* Created on Jan 18, 2003
*/
package org.jboss.cache.lock;
/**
* Used when a lock acquisition would cause a deadlock. This will only be used
* once deadlock detection is in place.
*
* @author Bela Ban
* @version $Revision: 1.2 $
*/
public class DeadlockException extends LockingException
{
/**
* Constructor for DeadlockException.
*
* @param msg
*/
public DeadlockException(String msg)
{
super(msg);
}
public DeadlockException(String msg, Throwable cause)
{
super(msg, cause);
}
}
| DeadlockException.java |