public function ContextErrorException::__construct

File

drupal/core/vendor/symfony/debug/Symfony/Component/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;
}