| Total Complexity | 1 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class TrackableEventCreationFailed extends Exception |
||
| 11 | { |
||
| 12 | protected const CODE = 5100; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $eventClassName; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $eventClassName |
||
| 21 | * @param Trackable $trackable |
||
| 22 | * @param null|Throwable $previous |
||
| 23 | * |
||
| 24 | * @return self |
||
| 25 | */ |
||
| 26 | public static function forEventClass( |
||
| 43 |