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

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

There is a newer version: 15.1.0.Dev03
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 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 10.1 (prior was in org.infinispan package since 7.0)
 */
public class IllegalLifecycleStateException extends CacheException {
   public IllegalLifecycleStateException() {
   }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy