Spaces:
No application file
No application file
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); | |
} | |
} | |