Page MenuHomeWickedGov Phorge

PathSegmentException.php
No OneTemporary

Size
545 B
Referenced Files
None
Subscribers
None

PathSegmentException.php

<?php
namespace MediaWiki\Rest\PathTemplateMatcher;
use Exception;
/**
* @newable
*/
class PathSegmentException extends Exception {
/** @var string */
public $template;
/** @var mixed */
public $userData;
/**
* @stable to call
*
* @param string $template
* @param mixed $userData
*/
public function __construct( $template, $userData ) {
$this->template = $template;
$this->userData = $userData;
parent::__construct( "Unable to add path template \"$template\" since it contains " .
"an empty path segment." );
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 16:44 (11 h, 16 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
e0/b1/e0eeba923c75818a41abd1a7f0e6
Default Alt Text
PathSegmentException.php (545 B)

Event Timeline