xref: /plugin/statistics/IpResolverException.php (revision ba6b3b10263c8439a170c848fb8e0ce174e4f468)
1*ba6b3b10SAndreas Gohr<?php
2*ba6b3b10SAndreas Gohr
3*ba6b3b10SAndreas Gohrnamespace dokuwiki\plugin\statistics;
4*ba6b3b10SAndreas Gohr
5*ba6b3b10SAndreas Gohrclass IpResolverException extends \Exception
6*ba6b3b10SAndreas Gohr{
7*ba6b3b10SAndreas Gohr    public $details;
8*ba6b3b10SAndreas Gohr
9*ba6b3b10SAndreas Gohr    public function __construct($message, $details = null, $code = 0, \Throwable $previous = null)
10*ba6b3b10SAndreas Gohr    {
11*ba6b3b10SAndreas Gohr        parent::__construct($message, $code, $previous);
12*ba6b3b10SAndreas Gohr        $this->details = $details;
13*ba6b3b10SAndreas Gohr    }
14*ba6b3b10SAndreas Gohr}
15