blob: 8d20bf9fb97d1ff3f40153eb4d43cc6ed782348a [file] [log] [blame]
/**
*
*/
package org.eclipse.smila.solr;
/**
* @author pwissel
*
*/
public class SolrException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
public SolrException() {
super();
}
public SolrException(final String message) {
super(message);
}
public SolrException(final Throwable cause) {
super(cause);
}
public SolrException(final String message, final Throwable cause) {
super(message, cause);
}
}