1
0
mirror of https://github.com/Rudloff/alltube.git synced 2024-07-01 08:10:54 +02:00
alltube/classes/exceptions/EmptyUrlException.php

16 lines
201 B
PHP
Raw Normal View History

<?php
/**
* EmptyUrlException class.
*/
namespace Alltube\Exception;
use Exception;
/**
* Exception thrown when youtube-dl returns an empty URL.
*/
class EmptyUrlException extends Exception
{
}