alltube-library/classes/exceptions/EmptyUrlException.php
Pierre Rudloff 98b74fd6f2 Initial import from Alltube app
Removed dependency on Config and LocaleManager classes
Avoid using generic exceptions
2020-06-20 19:19:37 +02:00

18 lines
319 B
PHP

<?php
/**
* EmptyUrlException class.
*/
namespace Alltube\Library\Exception;
/**
* Exception thrown when youtube-dl returns an empty URL.
*/
class EmptyUrlException extends AlltubeLibraryException
{
/**
* @var string Error message
*/
protected $message = 'youtube-dl returned an empty URL.';
}