Completed
Push — master ( 64b8b5...1ef719 )
by
unknown
06:56
created

TooManySparqlRequestsException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace WikibaseQuality\ConstraintReport\ConstraintCheck\Helper;
4
5
/**
6
 * @license GPL-2.0-or-later
7
 */
8
class TooManySparqlRequestsException extends SparqlHelperException {
9
10
	public function __construct() {
11
		parent::__construct( 'The SPARQL query endpoint reports too many requests.' );
12
	}
13
14
}
15