Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
AggregateGroupAssociationFailure
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2declare( strict_types = 1 );
3
4namespace MediaWiki\Extension\Translate\MessageGroupProcessing;
5
6use LocalizedException;
7use MediaWiki\Message\Message;
8
9/**
10 * Exception thrown when a message group could not be associated to an aggregate group
11 * @author Abijeet Patro
12 * @license GPL-2.0-or-later
13 * @since 2024.11
14 */
15class 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}