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