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

org.infinispan.manager.EmbeddedCacheManagerStartupException Maven / Gradle / Ivy

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

import org.infinispan.commons.CacheException;

/**
 * An exception to encapsulate an error when starting up a cache manager
 *
 * @author Manik Surtani
 * @since 4.2.2
 */
public class EmbeddedCacheManagerStartupException extends CacheException {
   public EmbeddedCacheManagerStartupException() {
   }

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

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

   public EmbeddedCacheManagerStartupException(String msg, Throwable cause) {
      super(msg, cause);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy