| 123456789101112131415161718192021222324 |
- /*
- * $Id$
- */
- 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$
- */
|