mediawiki-extensions-Math/src/MathRestbaseException.php
Daimona Eaytoy d06bd18532 Replace deprecated MWException
Introduce new classes for checked exceptions, and use SPL exceptions
for the unchecked ones.

Bug: T328220
Change-Id: Ic44463e910911afe6395c38fd2f59b9bfa02a4f0
2023-06-09 13:00:46 +02:00

9 lines
110 B
PHP

<?php
namespace MediaWiki\Extension\Math;
use Exception;
class MathRestbaseException extends Exception {
}