You are here

class UndefinedFunctionException in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/debug/Exception/UndefinedFunctionException.php \Symfony\Component\Debug\Exception\UndefinedFunctionException

Undefined Function Exception.

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

Hierarchy

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

Expanded class hierarchy of UndefinedFunctionException

1 file declares its use of UndefinedFunctionException
UndefinedFunctionFatalErrorHandler.php in vendor/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php

File

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

Namespace

Symfony\Component\Debug\Exception
View source
class UndefinedFunctionException 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