ab7a137afa
- GeoIP2 PHP API 3.0.0 - MaxMind DB Reader API 1.11.1 Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
12 lines
219 B
PHP
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 {}
|