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

org.infinispan.util.UserRaisedFunctionalException Maven / Gradle / Ivy

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

/**
 * Thrown when client's code passed as a labda expression in commands such as {@link org.infinispan.commands.write.ComputeIfAbsentCommand}
 * raises a exception. We don't want to convert this excepton into a {@link org.infinispan.commons.CacheException} but
 * instead just propagate it to the user as it is.
 *
 * @author [email protected]
 * @since 9.1
 */
public class UserRaisedFunctionalException extends RuntimeException {

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy