edf4d4644d
This is the only time where youtube-dl returning an empty URL is not a problem.
15 lines
191 B
PHP
15 lines
191 B
PHP
<?php
|
|
/**
|
|
* EmptyUrlException class.
|
|
*/
|
|
|
|
namespace Alltube;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* Exception thrown when youtube-dl returns an empty URL.
|
|
*/
|
|
class EmptyUrlException extends Exception
|
|
{
|
|
}
|