Class SolrServerRuntimeException

  • All Implemented Interfaces:
    java.io.Serializable

    public class SolrServerRuntimeException
    extends java.lang.RuntimeException
    Represents a Solr server related runtime exception.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      SolrServerRuntimeException()
      Constructs a new runtime exception with null as its detail message.
      SolrServerRuntimeException​(java.lang.String message)
      Constructs a new runtime exception with the specified detail message.
      SolrServerRuntimeException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new runtime exception with the specified detail message and cause.
      SolrServerRuntimeException​(java.lang.Throwable cause)
      Constructs a new runtime 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

      • SolrServerRuntimeException

        public SolrServerRuntimeException()
        Constructs a new runtime exception with null as its detail message.
        See Also:
        RuntimeException()
      • SolrServerRuntimeException

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

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

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