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