You are here

class ClassNotFoundException in Zircon Profile 8

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

Class (or Trait or Interface) Not Found Exception.

@author Konstanton Myakshin <koc-dp@yandex.ru>

Hierarchy

  • class \Symfony\Component\Debug\Exception\ClassNotFoundException extends \Symfony\Component\Debug\Exception\FatalErrorException

Expanded class hierarchy of ClassNotFoundException

1 file declares its use of ClassNotFoundException
ClassNotFoundFatalErrorHandler.php in vendor/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php

File

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

Namespace

Symfony\Component\Debug\Exception
View source
class ClassNotFoundException extends FatalErrorException {
  public function __construct($message, \ErrorException $previous) {
    parent::__construct($message, $previous
      ->getCode(), $previous
      ->getSeverity(), $previous
      ->getFile(), $previous
      ->getLine(), $previous
      ->getPrevious());
    $this
      ->setTrace($previous
      ->getTrace());
  }

}

Members