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