You are here

class FrameNotFound in Zircon Profile 8.0

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

Class FrameNotFound @package Zumba\GastonJS\Exception

Hierarchy

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

Expanded class hierarchy of FrameNotFound

File

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

Namespace

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

  /**
   * @return string
   */
  public function getName() {

    //TODO: check stuff here
    return current(reset($this->response["args"]));
  }

  /**
   * @return string
   */
  public function message() {

    //TODO: check the exception message stuff
    return "The frame " . $this
      ->getName() . " was not not found";
  }

}

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
FrameNotFound::getName public function
FrameNotFound::message public function