diff options
author | Christian Cleberg <hello@cleberg.net> | 2023-05-24 21:18:39 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2023-05-24 21:18:39 -0500 |
commit | b3286eb015079950554508e0724fd5f12c71833f (patch) | |
tree | 8ac93accb2465c0b3dc34e78686beeac879eaf68 /vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php | |
parent | 864f1349e47f924bcde20c1cc83d838b5c5c7316 (diff) | |
download | ifconfig.php-b3286eb015079950554508e0724fd5f12c71833f.tar.gz ifconfig.php-b3286eb015079950554508e0724fd5f12c71833f.tar.bz2 ifconfig.php-b3286eb015079950554508e0724fd5f12c71833f.zip |
add geolocation functionality
Diffstat (limited to 'vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php')
-rw-r--r-- | vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php b/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php new file mode 100644 index 0000000..5323107 --- /dev/null +++ b/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php @@ -0,0 +1,14 @@ +<?php + +declare(strict_types=1); + +namespace MaxMind\Db\Reader; + +use Exception; + +/** + * This class should be thrown when unexpected data is found in the database. + */ +class InvalidDatabaseException extends Exception +{ +} |