13 lines
211 B
PHP
13 lines
211 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MediaWiki\Rest\PathTemplateMatcher;
|
||
|
|
|
||
|
|
use Exception;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Exception indicating incorrect REST module configuration.
|
||
|
|
* @since 1.43
|
||
|
|
*/
|
||
|
|
class ModuleConfigurationException extends Exception {
|
||
|
|
}
|