* @link https://github.com/pjmazenot/phpsolr-phpdoc
*/
/**
* (PECL solr >= 0.9.2)
* Class SolrException
* This is the base class for all exception thrown by the Solr extension classes.
* @link https://php.net/manual/en/class.solrexception.php
*/
class SolrException extends Exception
{
/** @var int The line in c-space source file where exception was generated */
protected $sourceline;
/** @var string The c-space source file where exception was generated */
protected $sourcefile;
/** @var string The c-space function where exception was generated */
protected $zif_name;
/**
* (PECL solr >= 0.9.2)
* Returns internal information where the Exception was thrown
* @link https://php.net/manual/en/solrexception.getinternalinfo.php
* @return array
* Returns an array containing internal information where the error was thrown. Used only for debugging by extension * developers. *
*/ public function getInternalInfo() {} }