blob: 2d64d97ee69d3fe849c59b02dcd144ca385291f4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
namespace MediaWiki\Rest\PathTemplateMatcher;
use Exception;
/**
* Exception indicating incorrect REST module configuration.
* @since 1.43
*/
class ModuleConfigurationException extends Exception {
}
|