You are here

class InvalidSelector in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/jcalderonzumba/gastonjs/src/Exception/InvalidSelector.php \Zumba\GastonJS\Exception\InvalidSelector

Class InvalidSelector @package Zumba\GastonJS\Exception

Hierarchy

  • class \Zumba\GastonJS\Exception\ClientError extends \Zumba\GastonJS\Exception\Exception

Expanded class hierarchy of InvalidSelector

File

vendor/jcalderonzumba/gastonjs/src/Exception/InvalidSelector.php, line 9

Namespace

Zumba\GastonJS\Exception
View source
class InvalidSelector extends ClientError {

  /**
   * Gets the method of selection
   * @return string
   */
  public function getMethod() {
    return $this->response["error"]["args"][0];
  }

  /**
   * Gets the selector related to the method
   * @return string
   */
  public function getSelector() {
    return $this->response["error"]["args"][1];
  }

  /**
   * @return string
   */
  public function message() {
    return "The browser raised a syntax error while trying to evaluate" . $this
      ->getMethod() . " selector " . $this
      ->getSelector();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ClientError::$response protected property @var mixed
ClientError::getResponse public function
ClientError::setResponse public function
ClientError::__construct public function 4
InvalidSelector::getMethod public function Gets the method of selection
InvalidSelector::getSelector public function Gets the selector related to the method
InvalidSelector::message public function