Translate extension for MediaWiki
Loading...
Searching...
No Matches
AggregateGroupAssociationFailure.php
1
<?php
2
declare( strict_types = 1 );
3
4
namespace
MediaWiki\Extension\Translate\MessageGroupProcessing;
5
6
use LocalizedException;
7
use MediaWiki\Message\Message;
8
15
class
AggregateGroupAssociationFailure
extends
LocalizedException {
16
public
function
__construct( array $groupIds ) {
17
parent::__construct(
18
[
19
'translate-error-association-failure'
,
20
Message::listParam( $groupIds ),
21
count( $groupIds )
22
]
23
);
24
}
25
}
MediaWiki\Extension\Translate\MessageGroupProcessing\AggregateGroupAssociationFailure
Exception thrown when a message group could not be associated to an aggregate group.
Definition
AggregateGroupAssociationFailure.php:15
src
MessageGroupProcessing
AggregateGroupAssociationFailure.php
Generated by
1.10.0