You are here

public function ClassNotFoundException::__construct in Zircon Profile 8.0

Same name in this branch
  1. 8.0 vendor/symfony/debug/Exception/ClassNotFoundException.php \Symfony\Component\Debug\Exception\ClassNotFoundException::__construct()
  2. 8.0 vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php \Prophecy\Exception\Doubler\ClassNotFoundException::__construct()
Same name and namespace in other branches
  1. 8 vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php \Prophecy\Exception\Doubler\ClassNotFoundException::__construct()

Parameters

string $message:

string $classname:

File

vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php, line 22

Class

ClassNotFoundException

Namespace

Prophecy\Exception\Doubler

Code

public function __construct($message, $classname) {
  parent::__construct($message);
  $this->classname = $classname;
}