class TargetAlreadyDefinedException extends LogicException
14
{
15
public function __construct($callchain, $expected_target, $target)
16
{
17
$this->message = "You are trying to define the target ".spl_object_id($target)." for the $callchain which already has one: ".spl_object_id($expected_target);