TYPO3 CMS  TYPO3_6-2
AmbiguousCommandIdentifierException.php
Go to the documentation of this file.
1 <?php
3 
21 class AmbiguousCommandIdentifierException extends \TYPO3\CMS\Extbase\Mvc\Exception\CommandException {
22 
26  protected $matchingCommands = array();
27 
37  public function __construct($message = '', $code = 0, \Exception $previousException = NULL, array $matchingCommands) {
38  $this->matchingCommands = $matchingCommands;
39  parent::__construct($message, $code, $previousException);
40  }
41 
45  public function getMatchingCommands() {
47  }
48 }
__construct($message='', $code=0, \Exception $previousException=NULL, array $matchingCommands)