--TEST-- SolrServerException (phps) - Throw Exception on solr server exception using phps response writer --SKIPIF-- --FILE-- SOLR_SERVER_HOSTNAME, 'login' => SOLR_SERVER_USERNAME, 'password' => SOLR_SERVER_PASSWORD, 'port' => SOLR_SERVER_PORT, 'path' => SOLR_SERVER_PATH, 'wt' => 'phps' ); $client = new SolrClient ( $options ); $query = new SolrQuery ( "lucene\\" ); try { $response = $client->query ( $query ); print_r ( $response ); } catch ( SolrServerException $e ) { echo sprintf("code: %d", $e->getCode()).PHP_EOL; echo sprintf("message: %s", $e->getMessage()).PHP_EOL; } ?> --EXPECTF-- code: %d message: %s