Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 8 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
AggregateGroupLanguageMismatchException | |
0.00% |
0 / 8 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 8 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | declare( strict_types = 1 ); |
3 | |
4 | namespace MediaWiki\Extension\Translate\MessageGroupProcessing; |
5 | |
6 | use LocalizedException; |
7 | use MediaWiki\Message\Message; |
8 | |
9 | /** |
10 | * Exception thrown when message group languages do not match the aggregate message group's language |
11 | * @author Abijeet Patro |
12 | * @license GPL-2.0-or-later |
13 | * @since 2024.11 |
14 | */ |
15 | class AggregateGroupLanguageMismatchException extends LocalizedException { |
16 | public function __construct( array $invalidGroupIds, string $aggregateGroupLanguageCode ) { |
17 | parent::__construct( |
18 | [ |
19 | 'translate-error-aggregategroup-source-language-mismatch', |
20 | Message::listParam( $invalidGroupIds ), |
21 | $aggregateGroupLanguageCode, |
22 | count( $invalidGroupIds ) |
23 | ] |
24 | ); |
25 | } |
26 | } |