Simplify PSR-4 autoload

This commit is contained in:
Pierre Rudloff 2020-07-01 22:56:08 +02:00
parent 8eb280bab0
commit dfdf6fef76
12 changed files with 1 additions and 2 deletions

View file

@ -0,0 +1,19 @@
<?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);
}
}