Eloquent\Phony\Call\Exception\UndefinedArgumentException::__construct PHP Метод

__construct() публичный Метод

Construct a new undefined argument exception.
public __construct ( integer $index )
$index integer The index.
    public function __construct($index)
    {
        $this->index = $index;
        parent::__construct(sprintf('No argument defined for index %s.', var_export($index, true)));
    }
UndefinedArgumentException