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

org.infinispan.IllegalLifecycleStateException Maven / Gradle / Ivy

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

/**
 * 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 7.0
 * @deprecated since 10.1 please use {@link org.infinispan.commons.IllegalLifecycleStateException} instead
 */
@Deprecated
public class IllegalLifecycleStateException extends org.infinispan.commons.IllegalLifecycleStateException {
   public IllegalLifecycleStateException() {
   }

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

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

   public IllegalLifecycleStateException(Throwable cause) {
      super(cause);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy