You are here

public function JSErrorItem::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/jcalderonzumba/gastonjs/src/Exception/JSErrorItem.php \Zumba\GastonJS\Exception\JSErrorItem::__construct()

Parameters

$message:

$stack:

File

vendor/jcalderonzumba/gastonjs/src/Exception/JSErrorItem.php, line 19

Class

JSErrorItem
Class JSErrorItem @package Zumba\GastonJS\Exception

Namespace

Zumba\GastonJS\Exception

Code

public function __construct($message, $stack) {
  $this->message = $message;
  $this->stack = $stack;
}