All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.util.concurrent.locks.DeadlockDetectedException Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.util.concurrent.locks;

import org.infinispan.commons.CacheException;

/**
 * Exception signaling detected deadlocks.
 *
 * @author [email protected]
 */
public class DeadlockDetectedException extends CacheException {

   private static final long serialVersionUID = -8529876192715526744L;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy