Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
TranslatablePageMarkException | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | declare( strict_types = 1 ); |
3 | |
4 | namespace MediaWiki\Extension\Translate\PageTranslation; |
5 | |
6 | use LocalizedException; |
7 | |
8 | /** |
9 | * Exception thrown when TranslatablePageMarker is unable to unmark a page for translation |
10 | * @since 2023.10 |
11 | */ |
12 | class TranslatablePageMarkException extends LocalizedException { |
13 | } |