Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
RemoteWikiPageProviderException
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace MediaWiki\Wikispeech\Segment;
4
5/**
6 * @file
7 * @ingroup Extensions
8 * @license GPL-2.0-or-later
9 */
10
11use MWException;
12
13/**
14 * In case of unable to communicate with the remote wiki.
15 * Transformed to an apierror-i18n ApiUsageException in the invoking API implementation.
16 *
17 * @since 0.1.10
18 */
19class RemoteWikiPageProviderException extends MWException {
20
21}