alltube-library/classes/Exception/AvconvException.php
2020-07-01 22:56:08 +02:00

18 lines
377 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($path)
{
parent::__construct("Can't find avconv or ffmpeg at " . $path . '.');
}
}