Files
moodle/lib/maxmind/MaxMind/Db/Reader/InvalidDatabaseException.php
T
Daniel Ziegenberg ab7a137afa MDL-80635 libraries: Upgrade GeoIP2 and Maxmind DB Reader
- GeoIP2 PHP API 3.0.0
- MaxMind DB Reader API 1.11.1

Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
2024-05-17 15:56:36 +02:00

12 lines
219 B
PHP

<?php
declare(strict_types=1);
namespace MaxMind\Db\Reader;
/**
* This class should be thrown when unexpected data is found in the database.
*/
// phpcs:disable
class InvalidDatabaseException extends \Exception {}