You are here

public function UndefinedFunctionException::__construct 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::__construct()

File

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

Class

UndefinedFunctionException
Undefined Function 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());
}