Your IP : 216.73.216.54


Current Path : /var/www/html/mediawiki/includes/Rest/PathTemplateMatcher/
Upload File :
Current File : /var/www/html/mediawiki/includes/Rest/PathTemplateMatcher/PathConflict.php

<?php

namespace MediaWiki\Rest\PathTemplateMatcher;

use Exception;

/**
 * @newable
 */
class PathConflict extends Exception {
	/** @var string */
	public $newTemplate;
	/** @var mixed */
	public $newUserData;
	/** @var string */
	public $existingTemplate;
	/** @var mixed */
	public $existingUserData;

	/**
	 * @stable to call
	 *
	 * @param string $template
	 * @param mixed $userData
	 * @param array $existingNode
	 */
	public function __construct( $template, $userData, $existingNode ) {
		$this->newTemplate = $template;
		$this->newUserData = $userData;
		$this->existingTemplate = $existingNode['template'];
		$this->existingUserData = $existingNode['userData'];
		parent::__construct( "Unable to add path template \"$template\" since it conflicts " .
			"with the existing template \"{$this->existingTemplate}\"" );
	}
}