Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
49 | public function __construct(string $location, string $reason, string $details, ?Throwable $previous) |
||
50 | { |
||
51 | $message = "Error parsing diff. Line {$location}. Reason: {$reason}. Details: [$details]"; |
||
52 | parent::__construct($message, 0, $previous); |
||
53 | $this->location = $location; |
||
54 | $this->reason = $reason; |
||
55 | } |
||
67 |