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

org.infinispan.commons.CrossSiteIllegalLifecycleStateException Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.commons;

/**
 * This exception is thrown when the cache or cache manager does not have the right lifecycle state for cross-site
 * operations to be called on it. Situations like this include when the cache is stopping or is stopped, when the cache
 * manager is stopped...etc.
 *
 * @since 15
 */
public class CrossSiteIllegalLifecycleStateException extends CacheException {
   public CrossSiteIllegalLifecycleStateException() {
   }

   public CrossSiteIllegalLifecycleStateException(String s) {
      super(s);
   }

   public CrossSiteIllegalLifecycleStateException(String message, Throwable cause) {
      super(message, cause);
   }

   public CrossSiteIllegalLifecycleStateException(Throwable cause) {
      super(cause.getMessage(), cause);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy