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

com.browseengine.bobo.api.BrowseException Maven / Gradle / Ivy

Go to download

Bobo is a Faceted Search implementation written purely in Java, an extension of Apache Lucene

The newest version!
package com.browseengine.bobo.api;

public class BrowseException extends Exception {
  /**
   * 
   */
  private static final long serialVersionUID = 1L;

  public BrowseException(String msg) {
    this(msg, null);
  }

  public BrowseException(String msg, Throwable cause) {
    super(msg, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy