Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
BetaFeaturesMissingFieldException | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | /** |
3 | * This file is part of the MediaWiki extension BetaFeatures. |
4 | * |
5 | * BetaFeatures is free software: you can redistribute it and/or modify |
6 | * it under the terms of the GNU General Public License as published by |
7 | * the Free Software Foundation, either version 2 of the License, or |
8 | * (at your option) any later version. |
9 | * |
10 | * BetaFeatures is distributed in the hope that it will be useful, |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | * GNU General Public License for more details. |
14 | * |
15 | * You should have received a copy of the GNU General Public License |
16 | * along with BetaFeatures. If not, see <http://www.gnu.org/licenses/>. |
17 | * |
18 | * @file |
19 | * @ingroup Extensions |
20 | * @copyright 2013 Mark Holmquist and others; see AUTHORS |
21 | * @license GPL-2.0-or-later |
22 | */ |
23 | |
24 | namespace MediaWiki\Extension\BetaFeatures; |
25 | |
26 | use Exception; |
27 | |
28 | class BetaFeaturesMissingFieldException extends Exception { |
29 | } |