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