diff options
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 +{ +} |