File "CouldNotParseFile.php"

Full Path: /var/www/html/back/vendor/spatie/php-structure-discoverer/src/Exceptions/CouldNotParseFile.php
File size: 383 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\StructureDiscoverer\Exceptions;

use Exception;
use Throwable;

class CouldNotParseFile extends Exception
{
    public function __construct(
        string $file,
        Throwable $previous
    ) {
        parent::__construct(
            "Could not parse file {$file} because: {$previous->getMessage()}",
            previous: $previous,
        );
    }
}