class ClassMirrorException in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassMirrorException.php \Prophecy\Exception\Doubler\ClassMirrorException
Hierarchy
- class \Prophecy\Exception\Doubler\ClassMirrorException extends \Prophecy\Exception\Doubler\RuntimeException implements DoublerException
Expanded class hierarchy of ClassMirrorException
1 file declares its use of ClassMirrorException
- ClassMirror.php in vendor/
phpspec/ prophecy/ src/ Prophecy/ Doubler/ Generator/ ClassMirror.php
File
- vendor/
phpspec/ prophecy/ src/ Prophecy/ Exception/ Doubler/ ClassMirrorException.php, line 16
Namespace
Prophecy\Exception\DoublerView source
class ClassMirrorException extends \RuntimeException implements DoublerException {
private $class;
public function __construct($message, ReflectionClass $class) {
parent::__construct($message);
$this->class = $class;
}
public function getReflectedClass() {
return $this->class;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ClassMirrorException:: |
private | property | ||
ClassMirrorException:: |
public | function | ||
ClassMirrorException:: |
public | function | ||
Exception:: |
public | function |