MediaWiki master
PathSegmentException.php
Go to the documentation of this file.
1<?php
2
4
5use Exception;
6
10class PathSegmentException extends Exception {
12 public $template;
14 public $userData;
15
22 public function __construct( $template, $userData ) {
23 $this->template = $template;
24 $this->userData = $userData;
25 parent::__construct( "Unable to add path template \"$template\" since it contains " .
26 "an empty path segment." );
27 }
28}