You are here

public function ClassNotFoundException::__construct in Zircon Profile 8

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

File

vendor/symfony/debug/Exception/ClassNotFoundException.php, line 21

Class

ClassNotFoundException
Class (or Trait or Interface) Not Found Exception.

Namespace

Symfony\Component\Debug\Exception

Code

public function __construct($message, \ErrorException $previous) {
  parent::__construct($message, $previous
    ->getCode(), $previous
    ->getSeverity(), $previous
    ->getFile(), $previous
    ->getLine(), $previous
    ->getPrevious());
  $this
    ->setTrace($previous
    ->getTrace());
}