SearchException.java from Kneobase at Krugle
Show SearchException.java syntax highlighted
/*
* Created on 01-jun-2005
*
*/
package com.kneobase.search;
import com.kneobase.KneobaseException;
/**
*
* @author Ernesto De Santis <a href="mailto:ernesto.desantis@colaborativa.net">ernesto.desantis@colaborativa.net</a>
*/
public class SearchException extends KneobaseException {
/**
* @param message
*/
public SearchException(String message) {
super(message);
}
/**
* @param innerException
*/
public SearchException(Throwable innerException) {
super(innerException);
}
/**
* @param message
* @param innerException
*/
public SearchException(String message, Throwable innerException) {
super(message, innerException);
}
}
See more files for this project here