MediaWiki REL1_34
ComplexityException.php
Go to the documentation of this file.
1<?php
23
24use Exception;
25
26class ComplexityException extends Exception {
27 public function __construct() {
28 parent::__construct( 'Diff is too complex to generate' );
29 }
30}