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

com.yahoo.gondola.IndexNotFoundException Maven / Gradle / Ivy

The newest version!
package com.yahoo.gondola;

public class IndexNotFoundException extends Exception {

    int earliestIndex;

    IndexNotFoundException(int earliestIndex) {
        this.earliestIndex = earliestIndex;
    }

    /**
     * @return the earliest index in the log.
     */
    public int getEarliestIndex() {
        return earliestIndex;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy