MWException -> Exception

Change-Id: I18da1baeb70387b96e30811a049185a264dec26d
This commit is contained in:
Ori Livneh 2015-01-09 17:55:54 -08:00
parent 3b9c5b57a8
commit d9b9b06032
9 changed files with 13 additions and 13 deletions

View File

@ -212,13 +212,13 @@ class MathHooks {
* LoadExtensionSchemaUpdates handler; set up math table on install/upgrade.
*
* @param $updater DatabaseUpdater
* @throws MWException
* @throws Exception
* @return bool
*/
static function onLoadExtensionSchemaUpdates( $updater = null ) {
global $wgMathValidModes;
if ( is_null( $updater ) ) {
throw new MWException( 'Math extension is only necessary in 1.18 or above' );
throw new Exception( 'Math extension is only necessary in 1.18 or above' );
}
$map = array( 'mysql', 'sqlite', 'postgres', 'oracle', 'mssql' );
@ -237,7 +237,7 @@ class MathHooks {
$updater->modifyExtensionField( 'mathlatexml', 'math_mathml', $sql );
}
} else {
throw new MWException( "Math extension does not currently support $type database for LaTeXML." );
throw new Exception( "Math extension does not currently support $type database for LaTeXML." );
}
}
if ( in_array( MW_MATH_MATHML, $wgMathValidModes ) ) {
@ -245,11 +245,11 @@ class MathHooks {
$sql = dirname( __FILE__ ) . '/db/mathoid.' . $type . '.sql';
$updater->addExtensionTable( 'mathoid', $sql );
} else {
throw new MWException( "Math extension does not currently support $type database for Mathoid." );
throw new Exception( "Math extension does not currently support $type database for Mathoid." );
}
}
} else {
throw new MWException( "Math extension does not currently support $type database." );
throw new Exception( "Math extension does not currently support $type database." );
}
return true;
}

View File

@ -56,7 +56,7 @@ class MathSource extends MathRenderer {
}
protected function getMathTableName() {
throw new MWException ( 'in math source mode no database caching should happen');
throw new Exception ( 'in math source mode no database caching should happen');
}
/**