class ClientError in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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\ExceptionView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ClientError:: |
protected | property | @var mixed | |
ClientError:: |
public | function | ||
ClientError:: |
public | function | ||
ClientError:: |
public | function | 4 |