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

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

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

/**
 * Thrown when a named cache cannot be found.
 *
 * @author (various)
 * @since 4.0
 */
public class NamedCacheNotFoundException extends Exception {

   private static final long serialVersionUID = 5937213470732655993L;

   public NamedCacheNotFoundException(String cacheName) {
      super("Cache: " + cacheName);
   }

   public NamedCacheNotFoundException(String cacheName, String message) {
      super(message + " Cache: " + cacheName);
   }

   public NamedCacheNotFoundException(String cacheName, String message, Throwable cause) {
      super(message + " Cache: " + cacheName, cause);
   }

   public NamedCacheNotFoundException(String cacheName, Throwable cause) {
      super("Cache: " + cacheName, cause);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy