mautic / app /bundles /CoreBundle /Exception /FileNotFoundException.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
raw
history blame contribute delete
280 Bytes
<?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);
}
}