alltube-library/classes/Exception/InvalidTimeException.php
Pierre Rudloff 69d09b780e Lint
2020-10-17 22:47:16 +02:00

19 lines
344 B
PHP

<?php
namespace Alltube\Library\Exception;
/**
* Invalid time.
*/
class InvalidTimeException extends AlltubeLibraryException
{
/**
* InvalidTimeException constructor.
* @param string $time Invalid time
*/
public function __construct(string $time)
{
parent::__construct('Invalid time: ' . $time);
}
}