wikimedia/mediawiki-extensions-Translate

View on GitHub
src/TranslatorInterface/TranslationHelperException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
declare( strict_types = 1 );

namespace MediaWiki\Extension\Translate\TranslatorInterface;

use Exception;

/**
 * Translation helpers can throw this exception when they cannot do
 * anything useful with the current message. This helps in debugging
 * why some fields are not shown.
 *
 * @author Niklas Laxström
 * @license GPL-2.0-or-later
 */
class TranslationHelperException extends Exception {
}