You are here

public function ContextErrorException::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/debug/Exception/ContextErrorException.php \Symfony\Component\Debug\Exception\ContextErrorException::__construct()

File

vendor/symfony/debug/Exception/ContextErrorException.php, line 23

Class

ContextErrorException
Error Exception with Variable Context.

Namespace

Symfony\Component\Debug\Exception

Code

public function __construct($message, $code, $severity, $filename, $lineno, $context = array()) {
  parent::__construct($message, $code, $severity, $filename, $lineno);
  $this->context = $context;
}