summaryrefslogtreecommitdiff
blob: 4fbb01ef327311523370ad2061902ed2332a5a28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
declare( strict_types = 1 );

namespace MediaWiki\Extension\Translate\PageTranslation;

use Exception;

/**
 * Exception thrown when a rename for a title fails
 * @author Abijeet Patro
 * @license GPL-2.0-or-later
 * @since 2021.09
 */
class InvalidPageTitleRename extends Exception {
}