for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is a part of a nekland library
*
* (c) Nekland <[email protected]>
* For the full license, take a look to the LICENSE file
* on the root directory of this project
*/
namespace Nekland\YoutubeApi\Exception;
class NotFoundItemException extends \Exception
{
public function __construct()
parent::__construct('The required item is not found, the ID you asked for is probably wrong.');
}