for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Aoe\Asdis\Content\Scraper\Exception;
/**
* Is thrown when a requested scraper does not exist.
*/
class ScraperNotExists extends \Exception
{
* @param string $filterKey
public function __construct($filterKey)
parent::__construct('Scraper with the key ' . $filterKey . ' does not exist.', 1371818682112);
}