2ca3410dd29f30232441539872fe99bd89d13d75
[lhc/web/wiklou.git] / languages / utils / CLDRPluralRuleError.php
1 <?php
2
3 /**
4 * @author Niklas Laxström, Tim Starling
5 *
6 * @copyright Copyright © 2010-2012, Niklas Laxström
7 * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
8 *
9 * @file
10 * @since 1.20
11 */
12
13 /**
14 * The exception class for all the classes in this file. This will be thrown
15 * back to the caller if there is any validation error.
16 */
17 class CLDRPluralRuleError extends MWException {
18 function __construct( $message ) {
19 parent::__construct( 'CLDR plural rule error: ' . $message );
20 }
21 }