Class SolrIndexNotFoundException

  • All Implemented Interfaces:
    java.io.Serializable

    public class SolrIndexNotFoundException
    extends SolrServiceException
    Exception indicating that an index was not found.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      SolrIndexNotFoundException()
      Constructs a new exception with null as its detail message.
      SolrIndexNotFoundException​(java.lang.String message)
      Constructs a new exception with the specified detail message.
      SolrIndexNotFoundException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      SolrIndexNotFoundException​(java.lang.Throwable cause)
      Constructs a new exception with the specified cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • SolrIndexNotFoundException

        public SolrIndexNotFoundException()
        Constructs a new exception with null as its detail message.
        See Also:
        Exception()
      • SolrIndexNotFoundException

        public SolrIndexNotFoundException​(java.lang.String message)
        Constructs a new exception with the specified detail message.
        Parameters:
        message - - the message
        See Also:
        Exception(String)
      • SolrIndexNotFoundException

        public SolrIndexNotFoundException​(java.lang.String message,
                                          java.lang.Throwable cause)
        Constructs a new exception with the specified detail message and cause.
        Parameters:
        message - - the message
        cause - - the cause
        See Also:
        Exception(String, Throwable)
      • SolrIndexNotFoundException

        public SolrIndexNotFoundException​(java.lang.Throwable cause)
        Constructs a new exception with the specified cause.
        Parameters:
        cause - - the cause
        See Also:
        Exception(Throwable)