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