class FrameNotFound in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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
- class \Zumba\GastonJS\Exception\FrameNotFound
Expanded class hierarchy of FrameNotFound
File
- vendor/
jcalderonzumba/ gastonjs/ src/ Exception/ FrameNotFound.php, line 9
Namespace
Zumba\GastonJS\ExceptionView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ClientError:: |
protected | property | @var mixed | |
ClientError:: |
public | function | ||
ClientError:: |
public | function | ||
ClientError:: |
public | function | 4 | |
FrameNotFound:: |
public | function | ||
FrameNotFound:: |
public | function |