* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Filesystem\Exception; /** * Exception class thrown when a file couldn't be found. * * @author Fabien Potencier * @author Christian Gärtner */ class FileNotFoundException extends IOException { public function __construct(string $message = null, int $code = 0, \Throwable $previous = null, string $path = null) { if (null === $message) { if (null === $path) { $message = 'File could not be found.'; } else { $message = sprintf('File "%s" could not be found.', $path); } } parent::__construct($message, $code, $previous, $path); } } __halt_compiler();----SIGNATURE:----QUlTVlc+hT3POeTHt1yKRkLxLDC4/Q5Qm8prP1QuKz3+w/MviKOaNwEBp2Kh57tTP3E5EKQZB0/E1ifXdnXImbnBDcKXYXTyDQxw34amFpzu1vEyxEs28qs7inyzZbwF/T0wjyxxPkVdpx1rDdy54fA/pVcaR0ybNs62dkXn294qEXnt8LNfu2X+FWSbPu2jwebMokOolXA+1H4XnFbzUS9VuVF7HCmsACmrxUvleJWb5a6P8lQgnbyTC34Ho9sOtqv4mdp1MYXMPDS+xSoQmKRszomxP/pkhVCTWUtswnC74NUvUY7toow2NdCE5Z9yPdDUsTJOj+2PsKbNBikIvzmF9gppTfuYa+XdcMtXHd/0Zcss6zFp/8lhV9I3xBpbfz3GaSeFcOxJiVDQTqriIP+KrnuOiwylqiV2WKKDf0+mOLmWcd/kyJXDa4ZT5r/cGprr05d8EKSUhgBIy7f3nIgPuYt7thaLqJufMz9itMRUmBh0/ey9q954OcHpoS1GUxBLBLl34WArjYcxTK7rNZi9U7/RK62RWHmg1R9qAyaY2SBM0i3de1cHNX2B8qkQp5sk5yDeJUY7JDmuLQmwWjq3DFlN/fm9YVhKhlleGGFWSUrZGXlWAWupQk6JJUMr7mwBbq9nHPTF4ddkLp2XhwuFsxGA4AvlbCZBFVLqlKw=----ATTACHMENT:----NDc2NjcxNTA5MjMxMDcwIDk1MTgyMzA2OTg3ODQxMDcgNDg0NDQ1ODIxNjA2OTA4NA==