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

org.infinispan.api.exception.InfinispanException Maven / Gradle / Ivy

package org.infinispan.api.exception;

/**
 * InfinispanException is raised when any runtime error not related to configuration is raised. It wraps the underlying
 * exception/error.
 *
 * @since 14.0
 */
public class InfinispanException extends RuntimeException {
   public InfinispanException(String message) {
      super(message);
   }

   public InfinispanException(String message, Throwable throwable) {
      super(message, throwable);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy