Merge "tiny optimization Title::isValidRedirectTarget()"
[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.
34 * $titleText will be appended if it's not null. (since MW 1.26)
35 */
36 public function __construct( $errorMessage = null, $titleText = null, $errorMessageParameters = array() ) {
37 $this->errorMessage = $errorMessage;
38 $this->titleText = $titleText;
39 if ( $titleText !== null ) {
40 $errorMessageParameters[] = $titleText;
41 }
42 $this->errorMessageParameters = $errorMessageParameters;
43
44 // Supply something useful for Exception::getMessage() to return.
45 $enMsg = wfMessage( $errorMessage, $errorMessageParameters );
46 $enMsg->inLanguage( 'en' )->useDatabase( false );
47 parent::__construct( $enMsg->text() );
48 }
49
50 /**
51 * @since 1.26
52 * @return string|null
53 */
54 public function getTitleText() {
55 return $this->titleText;
56 }
57
58 /**
59 * @since 1.26
60 * @return string|null
61 */
62 public function getErrorMessage() {
63 return $this->errorMessage;
64 }
65
66 /**
67 * @since 1.26
68 * @return string[]
69 */
70 public function getErrorMessageParameters() {
71 return $this->errorMessageParameters;
72 }
73 }