wiki.techinc.nl/languages/utils/CLDRPluralRuleError.php
Siebrand Mazeland 54d2e28226 Update formatting for languages/utils/
Change-Id: I54a19cff97067b71cb6531bc37802adb2d6c52ba
2014-04-21 19:48:22 +02:00

20 lines
525 B
PHP

<?php
/**
* @author Niklas Laxström, Tim Starling
*
* @copyright Copyright © 2010-2012, Niklas Laxström
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
*
* @file
* @since 1.20
*/
/**
* The exception class for all the classes in this file. This will be thrown
* back to the caller if there is any validation error.
*/
class CLDRPluralRuleError extends MWException {
function __construct( $message ) {
parent::__construct( 'CLDR plural rule error: ' . $message );
}
}