for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DICIT;
class UnknownDefinitionException extends \RuntimeException
{
private $serviceName;
/**
* @param string $serviceName
*/
public function __construct($serviceName)
parent::__construct('Class not configured : ' . $serviceName);
$this->serviceName = $serviceName;
}
public function getServiceName()
return $this->serviceName;