Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
TranslatableBundleImportException | 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\MessageGroupProcessing; |
5 | |
6 | use Exception; |
7 | |
8 | /** |
9 | * Exception thrown when an error occurs when importing a translatable bundle via TranslatableBundleImporter |
10 | * @since 2023.05 |
11 | * @license GPL-2.0-or-later |
12 | * @author Abijeet Patro |
13 | */ |
14 | class TranslatableBundleImportException extends Exception { |
15 | } |