2018-05-23 20:38:15 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* EmptyUrlException class.
|
|
|
|
*/
|
|
|
|
|
2019-04-22 19:06:05 +00:00
|
|
|
namespace Alltube\Exception;
|
2018-05-23 20:38:15 +00:00
|
|
|
|
|
|
|
use Exception;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Exception thrown when youtube-dl returns an empty URL.
|
|
|
|
*/
|
|
|
|
class EmptyUrlException extends Exception
|
|
|
|
{
|
|
|
|
}
|