InvalidSelector.php in Zircon Profile 8.0
File
vendor/jcalderonzumba/gastonjs/src/Exception/InvalidSelector.php
View source
<?php
namespace Zumba\GastonJS\Exception;
class InvalidSelector extends ClientError {
public function getMethod() {
return $this->response["error"]["args"][0];
}
public function getSelector() {
return $this->response["error"]["args"][1];
}
public function message() {
return "The browser raised a syntax error while trying to evaluate" . $this
->getMethod() . " selector " . $this
->getSelector();
}
}