Sophie

Sophie

distrib > Fedora > 13 > x86_64 > by-pkgid > 232fa0040b4339ee6824c808fad13cc6 > files > 9

libsphinxclient-0.9.9-1.fc13.x86_64.rpm

/*
 * $Id: SphinxException.java 1172 2008-02-24 13:50:48Z shodan $
 */

package org.sphx.api;

/** Exception thrown on attempts to pass invalid arguments to Sphinx API methods. */
public class SphinxException extends Exception
{
	/** Trivial constructor. */
	public SphinxException()
	{
	}

	/** Constructor from error message string. */
	public SphinxException ( String message )
	{
		super ( message );
	}
}

/*
 * $Id: SphinxException.java 1172 2008-02-24 13:50:48Z shodan $
 */