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