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

org.infinispan.persistence.jpa.JpaStoreException Maven / Gradle / Ivy

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

import org.infinispan.persistence.spi.PersistenceException;

/**
 * 
 * @author Ray Tsang
 *
 */
public class JpaStoreException extends PersistenceException {
   public JpaStoreException() {
      super();
   }

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy