| 1: | <?php declare(strict_types = 1); |
| 2: | |
| 3: | namespace PHPStan; |
| 4: | |
| 5: | use Exception; |
| 6: | |
| 7: | final class ShouldNotHappenException extends Exception |
| 8: | { |
| 9: | |
| 10: | |
| 11: | public function __construct(string $message = 'Internal error.') |
| 12: | { |
| 13: | parent::__construct($message); |
| 14: | } |
| 15: | |
| 16: | } |
| 17: | |