Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 2 |
BuildDocumentException | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
__construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
<?php | |
namespace CirrusSearch\BuildDocument; | |
/** | |
* Exception thrown while building a document for indexing. | |
* This exception is considered "recoverable" and the process emitting it might be | |
* retried at a later time. | |
*/ | |
class BuildDocumentException extends \Exception { | |
public function __construct( string $message, \Throwable $cause = null ) { | |
parent::__construct( $message, 0, $cause ); | |
} | |
} |