alltube-library/classes/Exception/AvconvException.php

19 lines
377 B
PHP
Raw Normal View History

<?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 . '.');
}
}