Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class ChainOperationException extends \Exception |
||
17 | { |
||
18 | /** @var string */ |
||
19 | protected string $chainOperationName; |
||
20 | |||
21 | /** |
||
22 | * ChainOperationException constructor. |
||
23 | */ |
||
24 | public function __construct(string $message = "", int $code = 0, \Exception $previous = null, string $chainOperationName = '') |
||
29 | } |
||
30 | 1 | ||
31 | 1 | public function getChainOperationName(): string |
|
34 | } |
||
35 | } |