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

org.infinispan.persistence.spi.PersistenceException Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.persistence.spi;

import org.infinispan.commons.CacheException;
import org.infinispan.persistence.spi.CacheLoader;

/**
 * An exception thrown by a {@link CacheLoader} or a {@link CacheWriter} implementation if there are problems
 * reading from a loader.
 *
 * @author Manik Surtani
 * @since 4.0
 */
public class PersistenceException extends CacheException {

   private static final long serialVersionUID = -7640401612614646818L;

   public PersistenceException() {
   }

   public PersistenceException(String message) {
      super(message);
   }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy