|
1
|
<?php |
|
2
|
namespace WpMatomo\WpStatistics\Exceptions; |
|
3
|
|
|
4
|
/** |
|
5
|
* @package WpMatomo
|
|
6
|
* @subpackage WpStatisticsImport
|
|
7
|
*/ |
|
8
|
class MaxEndDateReachedException extends \RuntimeException { |
|
9
|
|
|
10
|
public function __construct() { |
|
11
|
parent::__construct( 'Max end date reached.' ); |
|
12
|
} |
|
13
|
} |
|
14
|
|