Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
TranslationWebServiceInvalidInputException
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2declare( strict_types = 1 );
3
4namespace MediaWiki\Extension\Translate\WebService;
5
6use Exception;
7
8/**
9 * Used to signal that the requested input is rejected and cannot be used with
10 * an external web service. This is in contrast to a failure in the web service
11 * itself that is not in our control. Most common case for this is input that is
12 * too long.
13 * service itself.
14 * @author Niklas Laxström
15 * @license GPL-2.0-or-later
16 * @since 2017.04
17 * @ingroup TranslationWebService
18 */
19class TranslationWebServiceInvalidInputException extends Exception {
20}