The folder name must match the namespace used for the class. Change-Id: I768a4f8c9031e51b4a61174f39164204f6331dc2
12 lines
211 B
PHP
12 lines
211 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Rest\PathTemplateMatcher;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* Exception indicating incorrect REST module configuration.
|
|
* @since 1.43
|
|
*/
|
|
class ModuleConfigurationException extends Exception {
|
|
}
|