Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
TranslationWebServiceException | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | declare( strict_types = 1 ); |
3 | |
4 | namespace MediaWiki\Extension\Translate\WebService; |
5 | |
6 | use Exception; |
7 | |
8 | /** |
9 | * Used to signal a failure in an external web service. If the web service has |
10 | * too many failures in a short period, it is suspended to avoid wasting time. |
11 | * @author Niklas Laxström |
12 | * @license GPL-2.0-or-later |
13 | * @since 2013-01-01 |
14 | * @ingroup TranslationWebService |
15 | */ |
16 | class TranslationWebServiceException extends Exception { |
17 | } |