Neos\Flow\Mvc\Exception\AmbiguousCommandIdentifierException::__construct PHP Méthode

__construct() public méthode

Overwrites parent constructor to be able to inject matching commands.
See also: Exception
public __construct ( string $message = '', integer $code, Exception $previousException = null, array $matchingCommands )
$message string
$code integer
$previousException Exception
$matchingCommands array
    public function __construct($message = '', $code = 0, \Exception $previousException = null, array $matchingCommands)
    {
        $this->matchingCommands = $matchingCommands;
        parent::__construct($message, $code, $previousException);
    }
AmbiguousCommandIdentifierException