Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
NullEditLexiconException
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace MediaWiki\Wikispeech\Lexicon;
4
5/**
6 * @file
7 * @ingroup Extensions
8 * @license GPL-2.0-or-later
9 */
10
11use Exception;
12
13/**
14 * Is used if a user tries to edit a lexicon post with no changes.
15 * Then a warning box is shown.
16 *
17 * @since 0.1.11
18 */
19class NullEditLexiconException extends Exception {
20
21}