alltube-library/classes/Exception/AvconvException.php
Pierre Rudloff 69d09b780e Lint
2020-10-17 22:47:16 +02:00

18 lines
384 B
PHP

<?php
namespace Alltube\Library\Exception;
/**
* Can't find avconv or ffmpeg.
*/
class AvconvException extends AlltubeLibraryException
{
/**
* AvconvException constructor.
* @param string $path Path to avconv or ffmpeg.
*/
public function __construct(string $path)
{
parent::__construct("Can't find avconv or ffmpeg at " . $path . '.');
}
}