SphinxException.java 370 B

123456789101112131415161718192021222324
  1. /*
  2. * $Id$
  3. */
  4. package org.sphx.api;
  5. /** Exception thrown on attempts to pass invalid arguments to Sphinx API methods. */
  6. public class SphinxException extends Exception
  7. {
  8. /** Trivial constructor. */
  9. public SphinxException()
  10. {
  11. }
  12. /** Constructor from error message string. */
  13. public SphinxException ( String message )
  14. {
  15. super ( message );
  16. }
  17. }
  18. /*
  19. * $Id$
  20. */