Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
||
| MediaTransformInvalidParametersException | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | /** |
| 3 | * @license GPL-2.0-or-later |
| 4 | * @file |
| 5 | */ |
| 6 | |
| 7 | namespace MediaWiki\Media; |
| 8 | |
| 9 | use Exception; |
| 10 | |
| 11 | /** |
| 12 | * MediaWiki exception thrown by some methods when the transform parameter array is invalid |
| 13 | * |
| 14 | * @newable |
| 15 | * @ingroup Exception |
| 16 | */ |
| 17 | class MediaTransformInvalidParametersException extends Exception { |
| 18 | } |
| 19 | |
| 20 | /** @deprecated class alias since 1.46 */ |
| 21 | class_alias( MediaTransformInvalidParametersException::class, 'MediaTransformInvalidParametersException' ); |