astehlik/typo3-extension-mediaoembed

View on GitHub
Classes/Exception/PhotoDownload/PhotoDownloadException.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

declare(strict_types=1);

namespace Sto\Mediaoembed\Exception;

use Exception;

class PhotoDownloadException extends OEmbedException
{
    public function __construct(string $url, ?Exception $previous = null)
    {
        parent::__construct('Error downloading photo from ' . $url, 1564777848, $previous);
    }
}