Don't check namespace in SpecialWantedtemplates
[lhc/web/wiklou.git] / includes / title / MalformedTitleException.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 */
20
21 /**
22 * MalformedTitleException is thrown when a TitleParser is unable to parse a title string.
23 * @since 1.23
24 */
25 class MalformedTitleException extends Exception {
26 private $titleText = null;
27 private $errorMessage = null;
28 private $errorMessageParameters = array();
29
30 /**
31 * @param string $errorMessage Localisation message describing the error (since MW 1.26)
32 * @param string $titleText The invalid title text (since MW 1.26)
33 * @param string[] $errorMessageParameters Additional parameters for the error message. $titleText will be appended if it's not null. (since MW 1.26)
34 */
35 public function __construct( $errorMessage = null, $titleText = null, $errorMessageParameters = array() ) {
36 $this->errorMessage = $errorMessage;
37 $this->titleText = $titleText;
38 if ( $titleText !== null ) {
39 $errorMessageParameters[] = $titleText;
40 }
41 $this->errorMessageParameters = $errorMessageParameters;
42
43 // Supply something useful for Exception::getMessage() to return.
44 $enMsg = wfMessage( $errorMessage, $errorMessageParameters );
45 $enMsg->inLanguage( 'en' )->useDatabase( false );
46 parent::__construct( $enMsg->text() );
47 }
48
49 /**
50 * @since 1.26
51 * @return string|null
52 */
53 public function getTitleText() {
54 return $this->titleText;
55 }
56
57 /**
58 * @since 1.26
59 * @return string|null
60 */
61 public function getErrorMessage() {
62 return $this->errorMessage;
63 }
64
65 /**
66 * @since 1.26
67 * @return string[]
68 */
69 public function getErrorMessageParameters() {
70 return $this->errorMessageParameters;
71 }
72 }