class BadTargetClassException extends LogicException
14
{
15
public function __construct($callchain, $expected_target, $target)
16
{
17
$this->message = "You are trying to define a target of class ".get_class($target)." for the $callchain allowing only targets of class ".$expected_target;