Code Search for Developers
 
 
  

KneobaseException.java from Kneobase at Krugle


Show KneobaseException.java syntax highlighted

/*
 * Created on May 14, 2004
 *
 */
package com.kneobase;

/**
 * @author Gustavo Nestares 
 * @author Ernesto De Santis <a href="mailto:ernesto.desantis@colaborativa.net">ernesto.desantis@colaborativa.net</a>
 *
 */
public class KneobaseException extends Exception {

	public KneobaseException(String message) {
		super(message);
	}

	public KneobaseException(Throwable innerException) {
		super(innerException);
	}

    public KneobaseException(String message, Throwable innerException) {
        super(message, innerException);
    }

}




See more files for this project here

Kneobase

Kneobase is an enterprise search engine, based upon the Lucene search engine and the Spring framework. It allows to perform full-text search across many different content sources. It is highly adaptable out-of-the-box and has a pluggable architecture.

Project homepage: http://sourceforge.net/projects/kneobase
Programming language(s): Java,XML
License: other

  document/
    Document.java
    Field.java
  driver/
    I_IndexData.java
  util/
    I_PathInfo.java
  I_KneobaseConstants.java
  KneobaseException.java