You are here

class ClientError in Zircon Profile 8

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

Class ClientError @package Zumba\GastonJS\Exception

Hierarchy

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

Expanded class hierarchy of ClientError

File

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

Namespace

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

  /** @var mixed */
  protected $response;

  /**
   * @param mixed $response
   */
  public function __construct($response) {
    $this->response = $response;
  }

  /**
   * @return mixed
   */
  public function getResponse() {
    return $this->response;
  }

  /**
   * @param mixed $response
   */
  public function setResponse($response) {
    $this->response = $response;
  }

}

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