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