alltube-library/classes/Exception/EmptyUrlException.php

20 lines
327 B
PHP
Raw Permalink Normal View History

<?php
/**
* EmptyUrlException class.
*/
namespace Alltube\Library\Exception;
/**
* Exception thrown when youtube-dl returns an empty URL.
*/
class EmptyUrlException extends AlltubeLibraryException
{
/**
2020-06-20 22:13:50 +02:00
* Error message.
* @var string
*/
protected $message = 'youtube-dl returned an empty URL.';
}