alltube/classes/EmptyUrlException.php

16 lines
191 B
PHP
Raw Normal View History

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