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

com.jparams.store.index.IndexException Maven / Gradle / Ivy

There is a newer version: 3.1.4
Show newest version
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 suppressedExceptions)
    {
        super(message, null, true, true);
        suppressedExceptions.forEach(this::addSuppressed);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy