You are here

FrameNotFound.php in Zircon Profile 8.0

Same filename and directory in other branches
  1. 8 vendor/jcalderonzumba/gastonjs/src/Exception/FrameNotFound.php

File

vendor/jcalderonzumba/gastonjs/src/Exception/FrameNotFound.php
View source
<?php

namespace Zumba\GastonJS\Exception;


/**
 * Class FrameNotFound
 * @package Zumba\GastonJS\Exception
 */
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";
  }

}

Classes

Namesort descending Description
FrameNotFound Class FrameNotFound @package Zumba\GastonJS\Exception