Spaces:
No application file
No application file
File size: 280 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 |
<?php
namespace Mautic\CoreBundle\Exception;
class FileNotFoundException extends \Exception
{
public function __construct(string $message = 'File not found.', int $code = 0, \Exception $previous = null)
{
parent::__construct($message, $code, $previous);
}
}
|