| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 17 | class TimeoutException extends RuntimeException |
||
| 18 | { |
||
| 19 | public function __construct(string $message, private readonly float $spentTime, private readonly float $timeout) |
||
| 20 | { |
||
| 21 | parent::__construct($message); |
||
| 22 | } |
||
| 23 | |||
| 24 | public function getTimeout(): float |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getSpentTime(): float |
||
| 32 | } |
||
| 33 | } |
||
| 34 |