com.jparams.store.index.IndexException Maven / Gradle / Ivy
package com.jparams.store.index;
import java.util.Collection;
/**
* Thrown when one or more items added to a Store could not be indexed.
*/
public class IndexException extends RuntimeException
{
public IndexException(final String message, final Collection extends Throwable> suppressedExceptions)
{
super(message, null, true, true);
suppressedExceptions.forEach(this::addSuppressed);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy