Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| HtmlToWikitextConversionException | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | declare( strict_types=1 ); |
| 3 | |
| 4 | namespace ContentTranslation\Exception; |
| 5 | |
| 6 | use Exception; |
| 7 | |
| 8 | /** |
| 9 | * Represents an exception thrown when an error occurs during the conversion of HTML content to wikitext. |
| 10 | * |
| 11 | * @author Nik Gkountas |
| 12 | * @license GPL-2.0-or-later |
| 13 | * @since 2025.06 |
| 14 | */ |
| 15 | class HtmlToWikitextConversionException extends Exception { |
| 16 | |
| 17 | } |