Uses of Class
org.apache.solr.common.SolrException.ErrorCode

Packages that use SolrException.ErrorCode
org.apache.solr.common   
 

Uses of SolrException.ErrorCode in org.apache.solr.common
 

Methods in org.apache.solr.common that return SolrException.ErrorCode
static SolrException.ErrorCode SolrException.ErrorCode.getErrorCode(int c)
           
static SolrException.ErrorCode SolrException.ErrorCode.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SolrException.ErrorCode[] SolrException.ErrorCode.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Constructors in org.apache.solr.common with parameters of type SolrException.ErrorCode
SolrException(SolrException.ErrorCode code, String msg)
           
SolrException(SolrException.ErrorCode code, String msg, boolean alreadyLogged)
          Deprecated. Logging should now occur from the top-most level, making this unnecessary in 4.x. use SolrException.SolrException(ErrorCode, String)
SolrException(SolrException.ErrorCode code, String msg, Throwable th)
           
SolrException(SolrException.ErrorCode code, String msg, Throwable th, boolean alreadyLogged)
          Deprecated. Logging should now occur from the top-most level, making this unnecessary in 4.x use SolrException.SolrException(ErrorCode, String, Throwable)
SolrException(SolrException.ErrorCode code, Throwable th)