18 lines
384 B
PHP
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 . '.');
|
|
}
|
|
}
|